-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearch.html
69 lines (60 loc) · 2.53 KB
/
Search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Room Booking</title>
<meta name="viewport" content="width=1024">
<link rel="stylesheet" type="text/css" media="screen" href="../styles.css" />
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
<link rel="manifest" href="../site.webmanifest">
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<script src="main.js"></script>
</head>
<body>
<div class="container">
<h1>Room Booking</h1>
<h2>With Hull University</h2>
<div class="form">
<form action= "Search.php" method="GET" id="Search" name="Search";>
<fieldset class="form-fieldset ui-input __first">
<input type="Number" min="0" max="999999999" placeholder="Student ID" readonly = "readonly" name="StudentID" id = "StudentID"/>
</fieldset>
<script>
var local = localStorage.getItem("LoginID");
document.getElementById("Search").elements.namedItem("StudentID").value = local;
</script>
<div class="switch-field">
<input type="radio" id="switch_3_left" name="Selection" value="Week" checked/>
<label for="switch_3_left">Week</label>
<input type="radio" id="switch_3_center" name="Selection" value="Now" />
<label for="switch_3_center">Now</label>
<input type="radio" id="switch_3_right" name="Selection" value="All" />
<label for="switch_3_right">All</label>
</div>
<div class="form-footer">
<button class="btn">Submit</button>
</div>
</form>
</div>
</div>
</body>
<div class="mainmessage">
<ul>
<li><a href="SocietyPortal.html">Home</a></li>
<li><a href="Avalible.html">Find Available Rooms</a></li>
<li><a class="active" href="Search.html">My Timetable</a></li>
<li><a href="../index.html" onclick="logoutclear()">Logout</a></li>
</ul>
<script>
var logoutclear = function()
{
localStorage.clear();
}
</script>
</div>
</html>