-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS -->
<link rel="stylesheet" href="assets/styles/main.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<title>ProcrastiNOT</title>
</head>
<body>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>New Todo</h2>
<form id="new-todo-form">
<input
type="text"
class="todo-input"
id="todo-input"
name="todo-input"
placeholder="Ex: Get Groceries"
/>
<button
class="button button--modal"
type="submit"
value="Submit"
id="submit-todo-button"
>
Add
</button>
</form>
<p id="feedback-message"></p>
</div>
</div>
<!-- End The Modal -->
<!-- Headline -->
<div class="headline">
<button class="button check-wrapper check-wrapper--headline">
<img src="./assets/images/check.svg" alt="check icon" />
</button>
<h1>ProcrastiNOT</h1>
</div>
<!-- End Headline -->
<!-- No todos -->
<div id="no-todos-container">
<h2 id="no-todos">No Todos Added</h2>
</div>
<!--End No todos -->
<!-- Todos list -->
<div class="todos-container"></div>
<!--End Todos list -->
<!-- New todo -->
<div class="new-todo-container">
<button class="button plus-wrapper" id="todo-modal">
<img src="./assets/images/plus.svg" alt="plus icon" />
</button>
<!-- End New todo -->
</div>
<script type="text/javascript" src="dist/js/bundle.js"></script>
</body>
</html>