-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (78 loc) · 3.73 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
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CalendAR</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Istok+Web&display=swap">
</head>
<body>
</br>
<h1><div class="header"><b>Wecome to your CalendAR</b></div></h1>
<div style="text-align: center;" class="date"></div>
<br><div class="container">
Save your daily planner indefinitely! Input your data in the text box, lock, and load.
Blocks will be uneditable after time has passed (Inputs re-enabled for edits 8pm-9am).</div><br>
</br>
<div>
<table class="table table-hover">
<tbody>
<tr>
<th scope="row 09"colspan="1">9AM</th>
<td id="time09"colspan="4"><textarea class="text 09" style="overflow:scroll;" maxlength="128" id="toDo09"></textarea></td>
<td id="locker" colspan="1"><button id="btn09" class="btn 09">LOCK</button></td>
</tr>
<tr>
<th scope="row 10"colspan="1">10AM</th>
<td id="time10"colspan="4"><textarea class="text 10" style="overflow:scroll" maxlength="128" id="toDo10"></textarea></td>
<td id="locker" colspan="1"><button id="btn10" class="btn 10">LOCK</button></td>
</tr>
<tr>
<th scope="row 11"colspan="1">11AM</th>
<td id="time11"colspan="4"><textarea class="text 11" style="overflow:scroll" maxlength="128" id="toDo11"></textarea></td>
<td id="locker" colspan="1"><button id="btn11" class="btn 11">LOCK</button></td>
</tr>
<tr>
<th scope="row 12"colspan="1">12PM</th>
<td id="time12"colspan="4"><textarea class="text 12" style="overflow:scroll" maxlength="128" id="toDo12"></textarea></td>
<td id="locker" colspan="1"><button id="btn12" class="btn 12">LOCK</button></td>
</tr>
<tr>
<th scope="row 13"colspan="1">1PM</th>
<td id="time13"colspan="4"><textarea class="text 13" style="overflow:scroll" maxlength="128" id="toDo13"></textarea></td>
<td id="locker" colspan="1"><button id="btn13" class="btn 13">LOCK</button></td>
</tr>
<tr>
<th scope="row 14"colspan="1">2PM</th>
<td id="time14"colspan="4"><textarea class="text 14" style="overflow:scroll" maxlength="128" id="toDo14"></textarea></td>
<td id="locker" colspan="1"><button id="btn14" class="btn 14">LOCK</button></td>
</tr>
<tr>
<th scope="row 15"colspan="1">3PM</th>
<td id="time15"colspan="4"><textarea class="text 15" style="overflow:scroll" maxlength="128" id="toDo15"></textarea></td>
<td id="locker" colspan="1"><button id="btn15" class="btn 15">LOCK</button></td>
</tr>
<tr>
<th scope="row 16"colspan="1">4PM</th>
<td id="time16"colspan="4"><textarea class="text 16" style="overflow:scroll" maxlength="128" id="toDo16"></textarea></td>
<td id="locker" colspan="1"><button id="btn16" class="btn 16">LOCK</button></td>
</tr>
<tr>
<th scope="row 17"colspan="1">5PM</th>
<td id="time17"colspan="4"><textarea class="text 17" style="overflow:scroll" maxlength="128" id="toDo17"></textarea></td>
<td id="locker" colspan="1"><button id="btn17" class="btn 17">LOCK</button></td>
</tr>
</tbody>
</table>
</br>
<div class="container">
<button id="clearAll" class="btn clear">CLEAR ALL</button>
</div>
<br><br>
</div>
<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-with-locales.min.js" type="text/javascript"></script>
<script src="script.js"></script>
</body>
</html>