Changeset 9280859 for src/main/resources/templates
- Timestamp:
- 02/01/23 22:35:56 (22 months ago)
- Branches:
- master
- Children:
- cc52b09
- Parents:
- 044bd76
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/homepage.html
r044bd76 r9280859 7 7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> 8 8 9 <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" /> 10 <!-- Google Fonts --> 11 <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> 12 <!-- MDB --> 13 <link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css" rel="stylesheet" /> 9 14 10 15 <link href='css/fullcalendar.css' rel='stylesheet'/> 11 16 <link href='css/fullcalendar.print.css' rel='stylesheet' media='print'/> 17 <link href="css/homepage.css" rel="stylesheet" /> 12 18 </head> 13 19 <body> … … 15 21 <div id='calendar'></div> 16 22 <div style='clear:both'></div> 23 </div> 24 25 <div class=""> 26 <div class="card"> 27 <div class="card-body py-5 px-md-5"> 28 <form th:action="@{/search}" method="get" th:object="${search}"> 29 <div> 30 <label for="student-birth-date">Date of search:</label> 31 <input type="date" th:field="${search.date}" id="student-birth-date"/> 32 </div> 33 <div> 34 <button type="submit" class="button">Search</button> 35 </div> 36 </form> 37 </div> 38 </div> 17 39 </div> 18 40 <script src='js/jquery-1.10.2.js' type="text/javascript"></script>
Note:
See TracChangeset
for help on using the changeset viewer.