-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (82 loc) · 2.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link href="resources/css/jquery-ui-themes.css" type="text/css" rel="stylesheet"/>
<link href="style.css" type="text/css" rel="stylesheet"/>
<script src="resources/jquery-3.2.1.js"></script>
<script src="index.js"></script>
</head>
<body>
<div class="rota" >
<div id="header" >
<p><span id="goto" >Goto</span><span id="rota" >Rota</span></p>
</div>
<form id="getRota" action="http://localhost/rota/getRota.php" method="post">
<div id="rotaLabel" >
<p><span>View your rota for week ending:</span></p>
</div>
<div id="dateChoice" >
<input id="week_ending" type="date" name="week_ending" value=""/>
</div>
<div id="submit" >
<input type="submit" value="Submit" />
</div>
</form>
<div id="welcome">
<p><span>Welcome</span></p>
</div>
<table id="rotaTable" border="2">
<tr>
<th></th>
<th name="Sunday" colspan="2">Sunday</th>
<th name="Monday" colspan="2">Monday</th>
<th name="Tuesday" colspan="2">Tuesday</th>
<th name="Wednesday" colspan="2">Wednesday</th>
<th name="Thursday" colspan="2">Thursday</th>
<th name="Friday" colspan="2">Friday</th>
<th name="Saturday" colspan="2">Saturday</th>
</tr>
<tr>
<th></th>
<th>Start</th>
<th>Finish</th>
<th>Start</th>
<th>Finish</th>
<th>Start</th>
<th>Finish</th>
<th>Start</th>
<th>Finish</th>
<th>Start</th>
<th>Finish</th>
<th>Start</th>
<th>Finish</th>
<th>Start</th>
<th>Finish</th>
</tr>
<tr>
<td id="name">Joe Bloggs</td>
<td id="sunStart">8.00</td>
<td id="sunFinish">4.00</td>
<td id="monStart">9.15</td>
<td id="monFinish">5.15</td>
<td id="tueStart">2.00</td>
<td id="tueFinish">10.00</td>
<td id="wedStart">Off</td>
<td id="wedFinish">Off</td>
<td id="thurStart">9.15</td>
<td id="thurFinish">5.15</td>
<td id="friStart">9.15</td>
<td id="friFinish">5.15</td>
<td id="satStart">Off</td>
<td id="satFinish">Off</td>
</tr>
</table>
<div id="rotaHere">
</div>
</div>
</body>
</html>