{% extends "layout.html" %} {% block title %}Account Error{% endblock %} {% block content %}
{% if state == 'inactive' %}
Your account is inactive

Accounts that haven't been logged into for {{ inactive_timeout_days }} days are automatically marked as inactive.
{% if support_email %} Contact {{ support_email }} to reactivate. {% else %} Contact contact your support team to reactivate. {% endif %}
{% else %}
Account is in a bad state!

{% if support_email %} Please contact {{ support_email }} to get help. {% else %} Please contact your support team to get help. {% endif %}
State: {{ state }}
{% endif %}
Username: {{ username }}
Login ID: {{ login_id }}
{% endblock %}