b2af866cf0
Add persistent German/English switching, translated UI messages and English 12-hour times. Align desktop event actions while preserving mobile layouts and record bilingual project guidance. Include pending diary deletion exclusions. Validate both languages with nine tests.
93 lines
2.1 KiB
HTML
93 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>
|
|
{% include '_language_switch.html' %}
|
|
|
|
<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>
|