{% extends "layout.html" %} {% from "_formhelpers.html" import render_field %} {% block title %}Apply for Trusted :: {{ config.SITE_NAME }}{% endblock %} {% block body %}
{% if trusted_form %}

You are eligible to apply for trusted status

{{ trusted_form.csrf_token }}
{{ render_field(trusted_form.why_give_trusted, class_='form-control') }}
{{ render_field(trusted_form.why_want_trusted, class_='form-control') }}
{% else %}

You are currently not eligible to apply for trusted status

You currently are not eligible to apply for trusted status for the following reason{% if deny_reasons|length > 1 %}s{% endif %}:

    {% for reason in deny_reasons %}
  • {{ reason }}
  • {% endfor %}
{% endif %}
{% endblock %}