a
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user