-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To Do List</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="header">To-Do</div>
<div class="mega">
<h1 class="head">Projects</h1>
<div class="projects"></div>
</div>
<div class="footer">Andis Paudel @ tOP</div>
<dialog class="addProjectDialog">
<form class="addProjectForm" method="dialog">
<label for="projectName">Name of project: </label>
<input type="text" id="projectName" />
<div class="btns">
<button id="submit">Add</button>
<button id="cancel">Cancel</button>
</div>
</form>
</dialog>
<dialog class="addTodoDialog">
<form class="addTodoForm" method="dialog">
<label for="todoTitle">Give your todo a title: </label>
<input type="text" id="todoTitle" />
<label for="description">Describe your todo: </label>
<input type="text" id="description" />
<label for="dueDate">When's the todo due? </label>
<input type="text" id="dueDate" />
<div class="btns">
<button id="submitTodo">Add</button>
<button id="cancel">Cancel</button>
</div>
</form>
</dialog>
<script src="./scripts.js"></script>
</body>
</html>