28 lines
831 B
HTML
28 lines
831 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Meine Todos</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container todo-container">
|
|
<div class="header">
|
|
<h1>Meine Todo-Liste</h1>
|
|
<button id="logout-button" class="btn btn-secondary">Abmelden</button>
|
|
</div>
|
|
|
|
<form id="add-todo-form">
|
|
<input type="text" id="new-todo-input" placeholder="Neue Aufgabe hinzufügen..." required>
|
|
<button type="submit" class="btn btn-add">+</button>
|
|
</form>
|
|
|
|
<ul id="todo-list">
|
|
</ul>
|
|
<p id="error-message" class="error-message"></p>
|
|
</div>
|
|
|
|
<script src="script.js"></script> </body>
|
|
</html>
|