2025-03-09 15:28:35 -05:00
|
|
|
{% from 'header.j2' import header_login %}
|
2025-03-10 00:52:09 -05:00
|
|
|
{% from 'imports.j2' import imports_main %}
|
2025-03-09 15:28:35 -05:00
|
|
|
<html lang=en>
|
|
|
|
<head>
|
2025-03-10 00:40:51 -05:00
|
|
|
<title>{{ instanceBranding }} - Register</title>
|
2025-03-10 00:52:09 -05:00
|
|
|
{{ imports_main() }}
|
2025-03-09 15:28:35 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ header_login() }}
|
|
|
|
<div style="text-align:center">
|
|
|
|
<h1>
|
2025-03-10 01:02:38 -05:00
|
|
|
Register at {{ instanceBranding }}
|
2025-03-09 15:28:35 -05:00
|
|
|
</h1>
|
2025-03-10 00:48:30 -05:00
|
|
|
<label>
|
|
|
|
<input
|
|
|
|
placeholder="username"
|
|
|
|
type="text"
|
|
|
|
name="name"
|
|
|
|
size="10"
|
2025-03-10 01:02:38 -05:00
|
|
|
required
|
2025-03-10 00:48:30 -05:00
|
|
|
/>
|
|
|
|
</label>
|
2025-03-09 15:28:35 -05:00
|
|
|
<br>
|
2025-03-10 00:48:30 -05:00
|
|
|
<br>
|
|
|
|
<label>
|
|
|
|
<input
|
|
|
|
placeholder="password"
|
|
|
|
type="password"
|
|
|
|
name="password"
|
|
|
|
size="10"
|
2025-03-10 01:02:38 -05:00
|
|
|
required
|
2025-03-10 00:48:30 -05:00
|
|
|
/>
|
|
|
|
</label>
|
2025-03-10 01:02:38 -05:00
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<label>
|
|
|
|
Agree to the rules
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
name="scales"
|
|
|
|
required
|
|
|
|
/>
|
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<input
|
|
|
|
type="submit"
|
|
|
|
value="Register"
|
|
|
|
/>
|
2025-03-09 15:28:35 -05:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|