-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (65 loc) · 2.83 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notatki</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Montserrat&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="menu">
<h1><i class="fas fa-sticky-note"></i> MyNotes</h1>
<div class="menu-buttons">
<button class="add icon"><i class="fas fa-plus"></i> Dodaj</button>
<button class="delete-all icon"><i class="fas fa-trash-alt"></i> Usuń wszystkie</button>
</div>
</div>
<div class="note-area">
<!-- <div class="note">
<div class="note-header">
<h3 class="note-title">Notatka #1</h3>
<div class="edit">
<button class="delete-note">
<i class="fas fa-times icon"></i>
</button>
<button class="edit-note">
<i class="fas fa-edit icon"></i>
</button>
</div>
</div>
<div class="note-body">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequuntur magnam suscipit aspernatur
aliquid, pariatur animi inventore similique non asperiores voluptatibus. Nemo voluptates amet aspernatur
rem ipsa illum enim cum incidunt!
</div>
<button class="accept">
<i class="fas fa-check icon"></i>
</button>
</div> -->
</div>
<div class="note-panel">
<h2>Dodaj notatkę</h2>
<label for="category">Wybierz kategorię</label>
<select id="category" onchange="selectValue()">
<option value="0" disabled selected>- wybierz kategorię - </option>
<option value="1">Zakupy</option>
<option value="1">Praca</option>
<option value="1">Dom</option>
<option value="1">Inne</option>
</select>
<label for="text">Wpisz treść notatki</label>
<textarea id="text"></textarea>
<p class="error">Uzupełnij wszystkie pola!</p>
<div class="panel-buttons">
<button class="save icon"><i class="fas fa-save"></i> Zapisz</button>
<button class="cancel icon"><i class="far fa-window-close"></i> Anuluj</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>