nyxask/app/templates/register.j2

33 lines
824 B
Text
Raw Normal View History

2025-03-09 15:28:35 -05:00
{% from 'header.j2' import header_login %}
<html lang=en>
<head>
<title>{{ instanceBranding }} - Register</title>
2025-03-09 15:28:35 -05:00
</head>
<body>
{{ header_login() }}
<div style="text-align:center">
<h1>
Login to {{ instanceName }}'s Nyxask!
</h1>
2025-03-10 00:48:30 -05:00
<label>
<input
placeholder="username"
type="text"
name="name"
size="10"
/>
</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"
/>
</label>
2025-03-09 15:28:35 -05:00
</div>
</body>
</html>