source: src/main/resources/templates/homepage.html@ cc52b09

Last change on this file since cc52b09 was cc52b09, checked in by Gjoko Kostadinov <gjoko.kostadinov@…>, 17 months ago

Add search button functionality

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
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
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" />
14
15 <link href='css/fullcalendar.css' rel='stylesheet'/>
16 <link href='css/fullcalendar.print.css' rel='stylesheet' media='print'/>
17 <link href="css/homepage.css" rel="stylesheet" />
18</head>
19<body>
20<div id='wrap'>
21 <div id='calendar'></div>
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 <div>
29 <label for="student-birth-date">Date of search:</label>
30 <input type="date" id="student-birth-date"/>
31 </div>
32 <div>
33 <button type="submit" class="button" id="search">Search</button>
34 </div>
35 </div>
36 </div>
37</div>
38<script src='js/jquery-1.10.2.js' type="text/javascript"></script>
39<script src='js/jquery-ui.custom.min.js' type="text/javascript"></script>
40<script src='js/fullcalendar.js' type="text/javascript"></script>
41<script src="js/homepage.js" type="text/javascript"></script>
42</body>
43</html>
Note: See TracBrowser for help on using the repository browser.