Changeset a073dad for src/main/resources/templates/addEvent.html
- Timestamp:
- 02/04/23 21:24:27 (22 months ago)
- Branches:
- master
- Children:
- 448bd84
- Parents:
- 693f587
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/addEvent.html
r693f587 ra073dad 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 1 <th:block xmlns:th="http://www.thymeleaf.org"> 2 <section class="jumbotron text-center"> 3 <div class="container"> 4 <h1 class="jumbotron-heading">Add New Event</h1> 5 </div> 6 </section> 8 7 9 </body> 10 </html> 8 <div class="container"> 9 <div class="row"> 10 <div class="col-md-5"> 11 <form action="/home/addE" method="POST"> 12 <div class="form-group"> 13 <label for="theme">Theme</label> 14 <input type="text" 15 class="form-control" 16 id="theme" 17 name="theme" 18 required 19 placeholder="Enter theme"> 20 </div> 21 <div class="form-group"> 22 <label for="duration">Duration</label> 23 <input type="text" 24 class="form-control" 25 id="duration" 26 name="duration" 27 placeholder="Duration"> 28 </div> 29 <div class="form-group"> 30 <label for="repeating">Repeating</label> 31 <input type="text" 32 class="form-control" 33 id="repeating" 34 name="repeating" 35 placeholder="repeating"> 36 </div> 37 <div class="form-group"> 38 <label for="start_date">Start Date</label> 39 <input type="date" 40 class="form-control" 41 id="start_date" 42 name="start_date" 43 > 44 </div> 45 46 <button id="submit" type="submit" class="btn btn-primary">Add Event</button> 47 </form> 48 </div> 49 </div> 50 </div> 51 52 </th:block>
Note:
See TracChangeset
for help on using the changeset viewer.