forked from maxifaxipaxi-new/tasksmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Manager by MaxiFaxiPaxi</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<button class="dev-intern" onclick="openDevIntern()">LOGIN</button>
</div>
<div class="container">
<h1>TODO Liste</h1>
<input type="text" id="taskTitle" placeholder="Titel eingeben">
<input type="text" id="taskDescription" placeholder="Beschreibung eingeben">
<select id="taskCategory">
<option value="bug">Bug</option>
<option value="server">Andere</option>
<option value="feature">Feature</option>
</select>
<button onclick="addTask()">Task hinzufügen</button>
<div id="taskList"></div>
</div>
<footer>
<p>© 2025 made with love by MaxiFaxiPaxi</p>
</footer>
<script src="script.js"></script>
</body>
</html>