-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (70 loc) · 2.41 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
<!DOCTYPE html>
<html lang="ru">
<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"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<title>Todo List</title>
</head>
<body>
<nav class="header navbar navbar-dark bg-primary">
<a class="navbar-brand">ToDoList</a>
<form class="form-inline">
<select class="form-control form-control-sm" id="themeSelect">
<option value="default">Theme Default</option>
<option value="light">Theme Light</option>
<option value="dark">Theme Dark</option>
</select>
</form>
</nav>
<div class="form-section mt-5">
<div class="container">
<div class="row">
<div class="col col-8 mx-auto">
<div class="card">
<div class="card-body">
<h5 class="card-title">Add new task</h5>
<form name="addTask">
<input
type="text"
name="title"
id="title"
class="form-control"
placeholder="Task title"
/>
<textarea
type="text"
name="body"
id="body"
class="form-control mt-3"
placeholder="Task body"
></textarea>
<button type="submit" class="btn btn-primary mt-4">
Add task
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tasks-list-section mt-5">
<div class="container">
<div class="row">
<button class="btn btn-primary ml-auto mr-2 col-2 btn-all-tasks">All tasks</button>
<button class="btn btn-primary mr-auto ml-2 col-2 btn-completed-tasks">Completed tasks</button>
<ul class="list-group col-12"></ul>
</div>
</div>
<script src="app.js"></script>
<!-- <script src="test.js"></script> -->
</body>
</html>