Files
pingu-concerts/app/templates/register.html
T

94 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="{{ language() }}">
<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>
<link rel="stylesheet" href="/static/css/language.css">
</head>
<body>
<div class="registration-header">{% include '_language_switch.html' %}</div>
<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>
{% include '_native_push.html' %}
</body>
</html>