{% extends "auth/secure.html" %}{% load i18n %} {% block content %}

{% trans "Your secure session has timed out." %}

{% trans "As a security feature your session has timed out due to a period of inactivity." %}

{% if has_pin %}

{% trans "You can get back in by entering your PIN:" %}

{% csrf_token %}

{% trans "If you can't remember your PIN, you may reset your session by using the button below. Note, that you may lose some secure preferences!" %}

{% else %}

{% trans "The button below will clear your secure session, allowing you to reauthenticate with any services you were previously using." %}

{% trans "Tip: Make it easier to get back in by setting a PIN!" %}

{% endif %}

{% csrf_token %}

{% trans "You may set a new PIN at any point by using the link at the bottom of an authenticated page." %}

{% endblock %}