|
|
(101 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
| <form>
| |
| <label for="name">Name</label>
| |
| <input type="text" name="firstname" placeholder="first name" required="required" />
| |
| <input type="text" name="lastname" placeholder="last name" required="required" />
| |
|
| |
|
| <hr>
| |
|
| |
| <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>
| |
|
| |
| <hr>
| |
|
| |
| <input type="date" name="date" value="{{CURRENTYEAR}}-{{CURRENTMONTH}}-{{CURRENTDAY}}" min="2000-01-01" max="2999-12-31" />
| |
|
| |
| <hr>
| |
|
| |
| <input type="submit" value="submit" />
| |
| </form>
| |