90 lines
1.7 KiB
HTML
90 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Pingu Concerts - Registrierung</title>
|
|
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
max-width: 500px;
|
|
margin: 60px auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
padding: 12px;
|
|
margin: 8px 0 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
padding: 12px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>🎸 Pingu Concerts</h1>
|
|
|
|
<h2>Einladung angenommen</h2>
|
|
|
|
<p>
|
|
Erstelle deinen Account für Pingu Concerts.
|
|
</p>
|
|
|
|
<form method="post" action="/register">
|
|
|
|
<input
|
|
type="hidden"
|
|
name="token"
|
|
value="{{ token }}"
|
|
>
|
|
|
|
<label>Benutzername</label>
|
|
<input
|
|
type="text"
|
|
name="username"
|
|
required
|
|
maxlength="50"
|
|
>
|
|
|
|
<label>Anzeigename</label>
|
|
<input
|
|
type="text"
|
|
name="display_name"
|
|
maxlength="100"
|
|
>
|
|
|
|
<label>E-Mail</label>
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
required
|
|
maxlength="255"
|
|
>
|
|
|
|
<label>Passwort</label>
|
|
<input
|
|
type="password"
|
|
name="password"
|
|
required
|
|
minlength="10"
|
|
autocomplete="new-password"
|
|
>
|
|
|
|
<button type="submit">
|
|
Account erstellen
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|