27 lines
636 B
Text
27 lines
636 B
Text
|
{% from 'header.j2' import header_login %}
|
||
|
<html>
|
||
|
<head>
|
||
|
</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="question">Password: </label>
|
||
|
<input
|
||
|
type="password"
|
||
|
id="password"
|
||
|
name="password"
|
||
|
size="10" />
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|