first test
This commit is contained in:
33
public/register.html
Normal file
33
public/register.html
Normal 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>
|
Reference in New Issue
Block a user