nyxask/app/templates/register.j2

53 lines
1.3 KiB
Text
Raw Normal View History

2025-03-09 15:28:35 -05:00
{% from 'header.j2' import header_login %}
{% from 'imports.j2' import imports_main %}
2025-03-09 15:28:35 -05:00
<html lang=en>
<head>
<title>{{ instanceBranding }} - Register</title>
{{ 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>