-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.html
59 lines (56 loc) · 2.09 KB
/
notes.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notizen</title>
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/layout.css" />
<link rel="stylesheet" href="styles/components.css" />
<link rel="stylesheet" href="styles/notes.css" />
<link rel="stylesheet" href="styles/dark-mode.css" />
</head>
<body>
<div class="container">
<header>
<div class="top-bar">
<div class="title-container">
<h1>Notizen</h1>
</div>
</div>
</header>
<main class="content">
<!-- Modal für Notizen -->
<div id="notes-modal" class="modal">
<a href="#" class="close-modal-link"></a>
<div class="modal-content">
<a href="#" id="close-notes-modal" class="close-button">×</a>
<h2>Notizen</h2>
<div id="notes-container">
<!-- Hier werden die Notizen als Widgets angezeigt -->
</div>
<button id="add-note-button">Neue Notiz hinzufügen</button>
</div>
</div>
<!-- Modal für neue Notiz -->
<div id="note-modal" class="modal">
<div class="modal-content">
<span id="close-note-modal" class="close-button">×</span>
<h2>Neue Notiz erstellen</h2>
<form id="note-form">
<label for="note-content">Inhalt:</label>
<textarea id="note-content" name="note-content" required></textarea>
<label for="note-color">Farbe:</label>
<input type="color" id="note-color" name="note-color" value="#ffffcc">
<button type="submit">Notiz erstellen</button>
</form>
</div>
</div>
</main>
</div>
<footer>
Powered by M.D.
</footer>
<script type="module" src="notes.js"></script>
</body>
</html>