26 lines
639 B
Plaintext
26 lines
639 B
Plaintext
{% extends "base" %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1>Tenebrous: Login</h1>
|
|
|
|
<p>Please login to continue.</p>
|
|
|
|
{% if flash %}
|
|
<p>Error: {{ flash }}</p>
|
|
{% endif %}
|
|
|
|
<form action="/login" method="post" accept-charset="utf-8">
|
|
<label for="username">username</label>
|
|
<input type="text" name="username" id="username" value="" />
|
|
<label for="password">password</label>
|
|
<input type="password" name="password" id="password" value="" />
|
|
<p><input type="submit" value="Login"></p>
|
|
</form>
|
|
|
|
<div>
|
|
<a href="/register">Register</a>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|