first test
This commit is contained in:
27
public/index.html
Normal file
27
public/index.html
Normal file
@ -0,0 +1,27 @@
|
||||
<!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>
|
Reference in New Issue
Block a user