2015-11-25 16:21:28 +00:00
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2015-11-27 09:47:29 +00:00
|
|
|
Sign in
|
2015-11-25 16:21:28 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
<h1 class="heading-xlarge">Sign in</h1>
|
|
|
|
|
|
2015-12-04 15:12:48 +00:00
|
|
|
<p>If you do not have an account, you can <a href="register">register for one now</a>.</p>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2015-11-27 09:47:29 +00:00
|
|
|
<form autocomplete="off" action="" method="post">
|
2015-11-27 16:25:56 +00:00
|
|
|
{{ form.hidden_tag() }}
|
2015-11-27 09:47:29 +00:00
|
|
|
<p>
|
|
|
|
|
<label class="form-label">Email address</label>
|
|
|
|
|
{{ form.email_address(class="form-control-2-3", autocomplete="off") }} <br>
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<label class="form-label">Password</label>
|
|
|
|
|
{{ form.password(class="form-control-1-4", autocomplete="off") }} <br>
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<span class="font-xsmall"><a href="">Forgotten password?</a></span>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
2015-11-27 16:25:56 +00:00
|
|
|
<button class="button" href="two-factor" role="button">Continue</button>
|
2015-11-27 09:47:29 +00:00
|
|
|
</p>
|
|
|
|
|
</form>
|
2015-11-25 16:21:28 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-12-04 14:50:23 +00:00
|
|
|
{% endblock %}
|