{% extends "base.html" %} {% block title %}Login{% endblock %} {% block path %}→ login{% endblock %} {% block includes %} {% endblock %} {% block content %} {% if oauth_enabled %}
If you have an R'Mail account, please log in with it by clicking the button below.
{% endif %}
{% if oauth_enabled %}
You can also use your Galah username and password if you were assigned one.
{% endif %}
{{ form.hidden_tag() }}
{{ form.email.label }} {% if form.email.errors %} ({{ form.email.errors[0] }}) {% endif %}
{{ form.email() }}
{{ form.password.label }} {% if form.password.errors %} ({{ form.password.errors[0] }}) {% endif %}
{{ form.password() }}
{% endblock %}