Last change
on this file since 9280859 was 9280859, checked in by Gjoko <goko_kostadinov@…>, 22 months ago |
Adding search by date on homepage.
|
-
Property mode
set to
100644
|
File size:
1.6 KB
|
Rev | Line | |
---|
[204464d] | 1 | <!DOCTYPE html>
|
---|
[044bd76] | 2 | <html>
|
---|
[204464d] | 3 | <head>
|
---|
[044bd76] | 4 | <title>FullCalendar by Creative Tim </title>
|
---|
| 5 |
|
---|
| 6 | <meta charset="utf-8"/>
|
---|
| 7 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
---|
| 8 |
|
---|
[9280859] | 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" />
|
---|
[044bd76] | 14 |
|
---|
| 15 | <link href='css/fullcalendar.css' rel='stylesheet'/>
|
---|
| 16 | <link href='css/fullcalendar.print.css' rel='stylesheet' media='print'/>
|
---|
[9280859] | 17 | <link href="css/homepage.css" rel="stylesheet" />
|
---|
[204464d] | 18 | </head>
|
---|
| 19 | <body>
|
---|
[044bd76] | 20 | <div id='wrap'>
|
---|
| 21 | <div id='calendar'></div>
|
---|
| 22 | <div style='clear:both'></div>
|
---|
| 23 | </div>
|
---|
[9280859] | 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>
|
---|
| 39 | </div>
|
---|
[044bd76] | 40 | <script src='js/jquery-1.10.2.js' type="text/javascript"></script>
|
---|
| 41 | <script src='js/jquery-ui.custom.min.js' type="text/javascript"></script>
|
---|
| 42 | <script src='js/fullcalendar.js' type="text/javascript"></script>
|
---|
| 43 | <script src="js/homepage.js" type="text/javascript"></script>
|
---|
[204464d] | 44 | </body>
|
---|
[044bd76] | 45 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.