-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplanner_old.html
80 lines (66 loc) · 2.17 KB
/
planner_old.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
<!DOCTYPE html>
<html>
<input type="checkbox" id="menuToggle">
<meta name="viewport" content="width=device-width; height=device-height; initial-scale=0.5; maximum-scale=0.5; minimum-scale=0.5;">
<head>
<title> TITLE </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel= "stylesheet" type="text/css" href="static/main.css" />
</head>
<body>
<header>
<nav class ="site-nav">
</nav>
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="planner.html">PLANNER</a></li>
</ul>
</div>
</header>
<form action={{url_for("answer")}} method = "post">
<div class="row">
<div class="col-75">
<input type="text" id="firstclass" name="firstclass" placeholder="What time is your first class?">
</div>
</div>
<div class="row">
<div class="col-75">
<input type="text" id="sleeptime" name="sleeptime"placeholder="When would you like to go to bed?">
</div>
</div>
<!-- <div class="row">
<div class="col-75">
<input type="text" id="task5" placeholder="Task 5?">
</div>
</div> -->
<div class="row">
<div class="col-75">
<input type="text" id="task1" placeholder="Task 1?">
</div>
</div>
<div class="row">
<div class="col-75">
<input type="text" id="task2" placeholder="Task 2?">
</div>
</div>
<div class="row">
<div class="col-75">
<input type="text" id="task3" placeholder="Task 3?">
</div>
</div>
<div class="row">
<div class="col-75">
<input type="text" id="task4" placeholder="Task 4?">
</div>
</div>
<div class="row">
<div class="col-75">
<input type="text" id="task5" placeholder="Task 5?">
</div>
</div>
<div class="row" id = "submitrow">
<input type="submit" value="Submit">
</div>
</form>
</html>