<?xml version="1.0" encoding="UTF-8"?>

<flowchart xmlns="http://wizard4j.org/flowchart">
<root>
 <info label="Welcome to this example flowchart. Please continue." name="welcome"/>
 <input name="firstname" type="string" label="What's your first name?" help="The name that was given to you by &lt;b&gt;your&lt;/b&gt; parents."/>
 <input name="continent" type="string" label="In which continent do you live?" help="These big chunks of land of which they say they are drifting.">
   <option label="Africa" value="Africa"/>
   <option label="Americas" value="Americas"/>
   <option label="Antarctica" value="Antartica"/>
   <option label="Asia" value="Asia"/>
   <option label="Europe" value="Europe" selected="true"/>
   <option label="Oceania" value="Oceania"/>
 </input>
 <input name="language" label="Which of these language do you speak?" type="stringArray" maxNbrOfElements="4" help="These are the languages in which you will be greeted.">
   <option label="English" value="english" selected="true"/>
   <option label="French" value="french"/>
   <option label="German" value="german"/>
   <option label="Spanish" value="spanish"/>
 </input>
 <input name="dateOfBirth" type="date" label="What's your date of birth?" help="You probably don't remember the exact moment yourself, but someone must have told you." min="-100" max="0" relativeToCurrentYear="true"/>
</root>
</flowchart>
