-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (67 loc) · 2.59 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="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todo List</title>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/warm/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/warm/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/warm/favicon-16x16.png">
<link rel="manifest" href="./favicon/warm/site.webmanifest">
<link
href="https://fonts.googleapis.com/css?family=Montserrat:200,400,700&display=swap&subset=latin-ext"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/327a0d490c.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="todo">
<div class="header">
<h1>ToDo List</h1>
<input
type="text"
class="todo-input"
placeholder="Wpisz treść zadania..."
/>
<button class="add-btn">Dodaj</button>
</div>
<div class="todo-list">
<h3>Lista zadań:</h3>
<p class="alert-info">Brak zadań na liście.</p>
<ul>
<!-- single task html schema below:
<li id="test">
Wypić herbatę
<div class="tools">
<button class="complete">
<i class="fas fa-check"></i>
</button>
<button class="edit">EDYTUJ</button>
<button class="delete">
<i class="fas fa-times"></i>
</button>
</div>
</li> -->
</ul>
</div>
</div>
<div class="popup">
<h3>Edytuj zadanie:</h3>
<div class="popup-body">
<p class="popup-info"></p>
<input
type="text"
class="popup-input"
placeholder="Wprowadź nową treść zadania..."
/>
<button class="popup-btn accept">Zatwierdź</button>
<button class="popup-btn cancel">Anuluj</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>