first test

This commit is contained in:
MLH
2025-04-03 19:34:31 +02:00
parent 32141f7a26
commit 68c55593b3
16 changed files with 3088 additions and 0 deletions

33
public/register.html Normal file
View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registrieren - Todo App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container auth-container">
<h1>Registrieren</h1>
<form id="register-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>
<div class="form-group">
<label for="confirm-password">Passwort bestätigen:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
</div>
<button type="submit" class="btn">Registrieren</button>
</form>
<p id="error-message" class="error-message"></p>
<p id="success-message" class="success-message"></p>
<p class="switch-link">Bereits ein Konto? <a href="/login">Anmelden</a></p>
</div>
<script src="script.js"></script> </body>
</html>