32 lines
824 B
Django/Jinja
32 lines
824 B
Django/Jinja
{% from 'header.j2' import header_login %}
|
|
<html lang=en>
|
|
<head>
|
|
<title>{{ instanceBranding }} - Register</title>
|
|
</head>
|
|
<body>
|
|
{{ header_login() }}
|
|
<div style="text-align:center">
|
|
<h1>
|
|
Login to {{ instanceName }}'s Nyxask!
|
|
</h1>
|
|
<label>
|
|
<input
|
|
placeholder="username"
|
|
type="text"
|
|
name="name"
|
|
size="10"
|
|
/>
|
|
</label>
|
|
<br>
|
|
<br>
|
|
<label>
|
|
<input
|
|
placeholder="password"
|
|
type="password"
|
|
name="password"
|
|
size="10"
|
|
/>
|
|
</label>
|
|
</div>
|
|
</body>
|
|
</html>
|