2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-11 13:15:10 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Sign in
|
2015-11-25 16:21:28 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<div class="column-two-thirds">
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2017-02-16 13:33:32 +00:00
|
|
|
|
{% if again %}
|
|
|
|
|
|
<h1 class="heading-large">You need to sign in again</h1>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
We sign you out if you haven’t used Notify for a while.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<h1 class="heading-large">Sign in</h1>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
If you do not have an account, you can
|
|
|
|
|
|
<a href="{{ url_for('.register') }}">create one now</a>.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
{% endif %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2016-02-15 13:05:25 +00:00
|
|
|
|
<form method="post" autocomplete="nope">
|
2016-02-01 16:57:29 +00:00
|
|
|
|
{{ textbox(form.email_address) }}
|
|
|
|
|
|
{{ textbox(form.password) }}
|
2016-05-10 11:36:49 +01:00
|
|
|
|
{{ page_footer("Continue", secondary_link=url_for('.forgot_password'), secondary_link_text="Forgot your password?") }}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-04 14:50:23 +00:00
|
|
|
|
{% endblock %}
|