This commit is contained in:
2025-02-13 18:50:22 +01:00
parent 5c211013b5
commit 4cae4e9e28
803 changed files with 107055 additions and 14 deletions

Binary file not shown.

View File

@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Registrierung</title>
<meta charset="utf-8" />
</head>
<body>
<h2>Registrierung</h2>
<!-- Hier den Code ergaenzen! -->
<form action="/registration" method="post">
<label>
Nickname:
<input type="text"
name="name"
pattern="[a-z]{5}[0-9]{1,3}"
required>
</label>
<label>
Passwort:
<input type="password"
name="password"
minlength="10"
required>
</label>
<fieldset>
<legend>Datenschutz</legend>
<label>
<input type="checkbox"
name="Datenschutz"
value="zugestimmt"
required>
Ich stimme zu
</label>
</fieldset>
<button type="submit">
Registrieren
</button>
</form>
</body>
</html>