{% extends "base.html" %} {% block title %}Login{% endblock %} {% block content %}
{{ lang.login_login_h1 }}
{% if get.registered is defined %}
Your account has been created. You may now login and access the server.
{% endif %} {% if get.error is defined %} {% if get.error == 'true' %}
Oh snap! The username or password you submitted was incorrect.
{% else %}
Please ensure that you have cookies enabled. We were unable to verify the token sent.
{% endif %} {% endif %} {% if get.totp is defined %}
Oh snap! Your Two-Factor Authentication token was missing or incorrect.
{% endif %} {% if get.login is defined %}
You are not authorized to access that page. Please log in.
{% endif %}
{{ xsrf|raw }}
{% endblock %}