forked from Jomsaruj/Light-up-the-room
-
Notifications
You must be signed in to change notification settings - Fork 0
/
time_form.html
82 lines (70 loc) · 4.04 KB
/
time_form.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Time Form</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/time_form.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
</head>
<body>
<nav class ="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand " style="margin-left: 10px ;" href = "Home.html">Light Up The Room</a>
<div class="collapse navbar-collapse">
<ul class= "navbar-nav " role="navigation">
<li class="nav-item">
<a class="nav-link text-light" href="time_form.html">Wanna Go?</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-light" href="" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
GRAPH
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="cost_graph.html">COST GRAPH</a></li>
<li><a class="dropdown-item" href="time_graph.html">TIME GRAPH</a></li>
<li><a class="dropdown-item" href="human_graph.html">HUMAN GRAPH</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<header class="page-header header container-fluid">
<div class = "jumbotron">
<h1 class="display-4" >Light Up The Room</h1>
</div>
</header>
<!-- --------------------------------------------------------------------------------------- -->
<div class="container">
<div class="form-container border border-dark">
<div class=time>
<div class="form-header">
<h2>Which Population do you want to know?</h2>
</div>
<div class="mb-3 form-check" id="check1">
<input id = "high" class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1">
<label class="form-check-label1" for="exampleRadios1">High Population</label>
</div>
<div class="mb-3 form-check" id="check2">
<input id = "mid" class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios2" value="option2">
<label class="form-check-label2" for="exampleRadios2">Mid Population</label>
</div>
<div class="mb-3 form-check" id="check3">
<input id = "low" class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios3" value="option3">
<label class="form-check-label3" for="exampleRadios3">Low Population</label>
</div>
<button type="button" class="btn btn-primary" id="submit-button">Submit</button>
</div>
</div>
</div>
<div class="container-form-output border border-dark">
<p class="output" id = "output">
OUTPUT
</p>
</div>
<!------------------------------------------------------------------------------------------ -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script src="js/time_form.js"></script>
</body>
</html>