-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (46 loc) · 1.9 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"/>
<link rel="stylesheet" href="css/main.css"/>
<link rel="icon" href="./img/iconSticker.png" type="image/x-icon">
<title>YourPlanner</title>
</head>
<body>
<div class="container">
<div class="display-4 mb-2">YourPlanner</div>
<div class="h4 mb-5">список задач на сегодня</div>
<!-- List of tasks -->
<div class="card mb-4">
<ul id="tasksList" class="list-group list-group-flush">
<!--<li id="emptyList" class="list-group-item empty-list">
<img src="./img/button.png" alt="Empty" width="64" class="mt-3">
<div class="empty-list__title">Список дел пуст</div>
</li>-->
</ul>
</div>
<!-- //List of tasks -->
<!-- Form -->
<div class="card bg-light" >
<div class="card-header">Добавить новую задачу</div>
<div class="card-body">
<form id="form">
<div class="form-group">
<input type="text" class="form-control" id="taskInput" placeholder="Текст задачи" required>
<small id="emailHelp" class="form-text text-muted">Что нужно сделать сегодня?</small>
</div>
<button type="submit" class="btn btn-primary btn-lg active">Добавить в список</button>
</form>
</div>
</div>
<!-- //Form -->
<!-- <button id="removeDoneTasks" class="btn btn-secondary mt-4 float-right">Удалить выполненные задачи</button> -->
</div>
<div class="copyright">
by <a href="https://t.me/nenichv" target="_blank">nenichv</a>
</div>
<script src="js/main.js"></script>
</body>
</html>