2025-03-09 12:57:29 -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">
|
2025-03-09 12:57:29 -05:00
|
|
|
<head>
|
2025-03-10 00:40:51 -05:00
|
|
|
<title>{{ instanceBranding }} - Login</title>
|
2025-03-10 00:52:09 -05:00
|
|
|
{{ imports_main() }}
|
2025-03-09 12:57:29 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ header_login() }}
|
|
|
|
<div style="text-align:center">
|
|
|
|
<h1>
|
2025-03-11 10:15:17 -05:00
|
|
|
Login to {{ instanceLocation }}'s Nyxask!
|
2025-03-09 12:57:29 -05:00
|
|
|
</h1>
|
|
|
|
<label for="name">Username: </label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="name"
|
|
|
|
name="name"
|
|
|
|
size="10" />
|
|
|
|
<br>
|
2025-03-10 00:40:51 -05:00
|
|
|
<label for="password">Password: </label>
|
2025-03-09 12:57:29 -05:00
|
|
|
<input
|
|
|
|
type="password"
|
|
|
|
id="password"
|
|
|
|
name="password"
|
|
|
|
size="10" />
|
|
|
|
</div>
|
|
|
|
</body>
|
2025-03-09 15:28:35 -05:00
|
|
|
</html>
|