nyxask/app/templates/login.j2
nyx 8c270bd24b finyally get the DB done
just wannya go home
2025-03-13 00:18:06 -05:00

21 lines
No EOL
695 B
Django/Jinja

{% from 'header.j2' import header_login %}
{% from 'imports.j2' import imports_main %}
<html lang="en">
<head>
<title>{{ instanceBranding }} - Login</title>
{{ imports_main() }}
</head>
<body>
{{ header_login() }}
<div style="text-align:center">
<h1>
Login to {{ instanceLocation }}'s Nyxask!
</h1>
<form method="POST">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
</div>
</body>
</html>