Initial commit
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
<!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
|
||||
>
|
||||
|
||||
<button type="submit">
|
||||
Account erstellen
|
||||
</button>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user