91 lines
1.9 KiB
HTML
91 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>MetalCircle - Registrierung</title>
|
|
<link rel="icon" type="image/png" href="/static/images/metalcircle-circle.png">
|
|
|
|
<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>
|
|
|
|
<p><img src="/static/images/metalcircle-full.png" alt="MetalCircle" style="display:block;max-width:100%;height:auto;margin:0 auto 24px"></p>
|
|
|
|
<h2>Einladung angenommen</h2>
|
|
|
|
<p>
|
|
Erstelle deinen Account für MetalCircle.
|
|
</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>
|