{% extends "withoutnav_template.html" %} {% from "components/textbox.html" import textbox %} {% from "components/page-footer.html" import page_footer %} {% from "components/form.html" import form_wrapper %} {% block per_page_title %} Sign in {% endblock %} {% block maincolumn_content %}
{% if again %}

You need to sign in again

{% if other_device %}

We signed you out because you logged in to Notify on another device.

{% else %}

We signed you out because you have not used Notify for a while.

{% endif %} {% else %}

Sign in

If you do not have an account, you can create one now.

{% endif %} {% call form_wrapper(autocomplete=True) %} {{ textbox(form.email_address, autocomplete='email') }} {{ textbox(form.password, autocomplete='current-password') }} {{ page_footer("Continue", secondary_link=url_for('.forgot_password'), secondary_link_text="Forgotten your password?") }} {% endcall %}
{% endblock %}