-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 5.06 KB
/
index.html
File metadata and controls
104 lines (99 loc) · 5.06 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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="Assets/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>
<button type="button" class="btn btn-info" id="reset">New day? Let's Reset.</button>
</header>
<main class="container">
<!-- Timeblocks-->
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>9AM</span></div>
<textarea class="col-sm-10 description" id="hour9"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn9">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>10AM</span></div>
<textarea class="col-sm-10 description" id="hour10"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn10">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>11AM</span></div>
<textarea class="col-sm-10 description" id="hour11"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn11">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>12PM</span></div>
<textarea class="col-sm-10 description" id="hour12"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn12">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>1PM</span></div>
<textarea class="col-sm-10 description" id="hour13"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn13">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>2PM</span></div>
<textarea class="col-sm-10 description" id="hour14"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn14">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>3PM</span></div>
<textarea class="col-sm-10 description" id="hour15"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn15">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>4PM</span></div>
<textarea class="col-sm-10 description" id="hour16"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn16">
<i class="fas fa-save"></i>
</button>
</article>
<article class="row">
<div class="col-sm-1 time-block hour d-flex justify-content-center align-items-center"><span>5PM</span></div>
<textarea class="col-sm-10 description" id="hour17"></textarea>
<button class="col-sm-1 saveBtn d-flex justify-content-center align-items-center" id="saveBtn17">
<i class="fas fa-save"></i>
</button>
</article>
</main>
<footer class="fixed-bottom footer mt-auto py-3">
<div class="container">
<span class="text-muted">Made with love by Renae Sowald 2021</span>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.10.4/dayjs.min.js"
integrity="sha512-0fcCRl828lBlrSCa8QJY51mtNqTcHxabaXVLPgw/jPA5Nutujh6CbTdDgRzl9aSPYW/uuE7c4SffFUQFBAy6lg=="
crossorigin="anonymous"></script>
<script src="Assets/script.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script> -->
</body>
</html>