{% extends "base.html" %} {% block title %}Security Questions - {{ config.BBS_NAME }}{% endblock %} {% block content %}

Security Questions

Password Recovery Questions

Set up to 3 security questions. If you forget your password, you can answer one of these instead of waiting for the sysop. Answers are not case-sensitive.

{% if current_answers %}
{{ current_answers|length }} question{{ 's' if current_answers|length != 1 }} currently set.
{% else %}
No security questions set. Without them, only a sysop can reset your password.
{% endif %}
{% for i in range(1, 4) %} {% set existing = current_answers[i-1] if current_answers|length >= i else none %}
{% endfor %} Cancel
{% endblock %}