|
|
(100 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
| <form>
| |
| {| class="smwtable-clean"
| |
| |-
| |
| ! <label for="firstname">Name</label>
| |
| | <input type="text" name="firstname" placeholder="first name" required="required" />
| |
| <input type="text" name="lastname" placeholder="last name" required="required" />
| |
| |-
| |
| ! <label for="dateofbirth">Date of birth</label>
| |
| | <input type="date" name="dateofbirth" value="{{CURRENTYEAR}}-{{CURRENTMONTH}}-{{CURRENTDAY}}" min="2000-01-01" max="2999-12-31" />
| |
| |-
| |
| ! other
| |
| |
| |
| <input type="checkbox" name="Role[]" value="organizer" id="organizer-checkbox" />
| |
| <label for="organizer-checkbox">Organizer</label>
| |
| <input type="checkbox" name="Role[]" value="participant" id="participant-checkbox" />
| |
| <label for="participant-checkbox">Participant</label>
| |
| <input type="checkbox" name="Role[]" value="contact" id="contact-checkbox" /><label for="contact-checkbox">Contact</label>
| |
| <input type="checkbox" name="Role[]" value="user" id="user-checkbox" /><label for="user-checkbox">User</label>
| |
|
| |
|
| |}
| |
|
| |
| <input type="submit" value="submit" />
| |
| </form>
| |