Files
ToDo-App_Node.js_Test/public/login.html
2025-04-03 19:34:31 +02:00

29 lines
1012 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Todo App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container auth-container">
<h1>Anmelden</h1>
<form id="login-form">
<div class="form-group">
<label for="username">Benutzername:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">Passwort:</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="btn">Anmelden</button>
</form>
<p id="error-message" class="error-message"></p>
<p class="switch-link">Noch kein Konto? <a href="/register">Registrieren</a></p>
</div>
<script src="script.js"></script> </body>
</html>