-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearch.html
51 lines (47 loc) · 1.98 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
<!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="shortcut icon" type="image/png" href="/favicon.png"/>
<link rel="shortcut icon" type="image/png" href="https://www.hull.ac.uk/site-elements/img/favicon/favicon-57.png"/>
<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" name="Search";>
<fieldset class="form-fieldset ui-input __first">
<input type="Number" min="0" max="999999999" placeholder="Student ID" name="StudentID" id = "StudentID"/>
</fieldset>
<fieldset class="form-fieldset ui-input __second">
<input type="text" placeholder="Society" name="Society" maxlength="20" id = "Society" />
</fieldset>
<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="index.html">Home</a></li>
<li><a href="Fetch.php">Fetch</a></li>
<li><a class="active" href="Search.html">Search</a></li>
</ul>
</div>
</html>