nyxask/app/templates/login.j2

27 lines
No EOL
699 B
Django/Jinja

{% from 'header.j2' import header_login %}
<html lang="en">
<head>
<title>{{ instanceBranding }} - Login</title>
</head>
<body>
{{ header_login() }}
<div style="text-align:center">
<h1>
Login to {{ instanceName }}'s Nyxask!
</h1>
<label for="name">Username: </label>
<input
type="text"
id="name"
name="name"
size="10" />
<br>
<label for="password">Password: </label>
<input
type="password"
id="password"
name="password"
size="10" />
</div>
</body>
</html>