52 lines
1.3 KiB
Django/Jinja
52 lines
1.3 KiB
Django/Jinja
{% from 'header.j2' import header_login %}
|
|
{% from 'imports.j2' import imports_main %}
|
|
<html lang=en>
|
|
<head>
|
|
<title>{{ instanceBranding }} - Register</title>
|
|
{{ imports_main() }}
|
|
</head>
|
|
<body>
|
|
{{ header_login() }}
|
|
<div style="text-align:center">
|
|
<h1>
|
|
Register at {{ instanceLocation }}
|
|
</h1>
|
|
<label>
|
|
<input
|
|
placeholder="username"
|
|
type="text"
|
|
name="name"
|
|
size="10"
|
|
required
|
|
/>
|
|
</label>
|
|
<br>
|
|
<br>
|
|
<label>
|
|
<input
|
|
placeholder="password"
|
|
type="password"
|
|
name="password"
|
|
size="10"
|
|
required
|
|
/>
|
|
</label>
|
|
<br>
|
|
<br>
|
|
<label>
|
|
Agree to the rules
|
|
<input
|
|
type="checkbox"
|
|
name="scales"
|
|
required
|
|
/>
|
|
</label>
|
|
<br>
|
|
<br>
|
|
<input
|
|
type="submit"
|
|
value="Register"
|
|
/>
|
|
</div>
|
|
</body>
|
|
</html>
|