-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (45 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SUTD Bus Stop</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="bootstrap/css/custom.css">
</head>
<body>
<div class="container">
<h2 align="center">Select your bus requirements below.</h2>
<form action="/" method="post">
<div class="container btn-block" align="center">
<label class="btn btn-default">
<input type="radio" name="busStopId" value="bus-stop-111111" checked> 111111
</label>
<label class="btn btn-default">
<input type="radio" name="busStopId" value="bus-stop-222222"> 2222222
</label>
<label class="btn btn-default">
<input type="radio" name="busStopId" value="bus-stop-333333" > 333333
</label>
</div>
<div class="btn-group-vertical btn-block" data-toggle="buttons">
<label class="btn btn-default btn-lg">
<input type="checkbox" name="bus-05" value="05"> Bus 05
</label>
<label class="btn btn-default btn-lg">
<input type="checkbox" name="bus-12" value="12"> Bus 12
</label>
<label class="btn btn-default btn-lg">
<input type="checkbox" name="bus-24" value="24"> Bus 24
</label>
</div>
<div class="btn-group-vertical btn-block">
<button type="submit" class="btn btn-lg btn-primary">Submit</button>
</div>
</form>
</div>
<script src="js/jquery-1.12.2.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>