-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (87 loc) · 3.6 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
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
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="Develop/CSS/style.css" />
<title>Work Day Scheduler</title>
</head>
<body>
<header class="jumbotron">
<h1 class="display-3">Work Day Scheduler</h1>
<p class="lead">A simple calendar app for scheduling your work day</p>
<p id="currentDay" class="lead"></p>
</header>
<main class="container">
<!-- Timeblocks go here -->
<form class="row">
<label class="hour col text-center time">9AM</label>
<input type="text" name="event" id="9AM" class="desciption textarea col-10"></input>
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center time">10AM</label>
<input type="text" name="event" id="10AM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">11AM</label>
<input type="text" name="event" id="11AM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">12PM</label>
<input type="text" name="event" id="12PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">1PM</label>
<input type="text" name="event" id="13PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">2PM</label>
<input type="text" name="event" id="14PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">3PM</label>
<input type="text" name="event" id="15PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">4PM</label>
<input type="text" name="event" id="16PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">5PM</label>
<input type="text" name="event" id="17PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
<form class="row">
<label class="hour col text-center">6PM</label>
<input type="text" name="event" id="18PM" class="desciption textarea col-10">
<button class="saveBtn col">save</button>
</form>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="Develop/JavaScript/JavaScript.js"></script>
</body>
</html>