{% extends "master.html" %} {% block website %}{{_("Fedora Accounts")}}{% endblock %} {% set OPENID = '.id.fedoraproject.org' %} {% block head %} {% endblock %} {% block navbar %} {% with flashes = get_flashed_messages(with_categories=True) %} {% if flashes %}
{% for category, flash in flashes %}
{{ flash }}
{% endfor %}
{% endif %} {% endwith %} {% endblock %} {% block bodycontent %}
{% block content %}{% endblock %}
{% endblock %} {% block footer %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block userlinks %}
  • Wiki User:{{ user.username }}
  • Fedora People {{ user.username }}
  • {% endblock %} {% macro front_page_blurb() %}

    {{_("Fedora Accounts")}}

    {{_("Fedora Accounts allows you to create and manage an account for Fedora Tools and Infrastructure.")}}

    {% endmacro %} {# an optional macro defining an element to show for editing group details #} {# typically, it used to link to a ticket tracker for an admin to edit a group #} {% macro edit_group_details() %} {% if current_user_is_sponsor and sponsor_form %}
    {{_("Request Change of Details")}}
    {% endif %} {% endmacro %} {# an optional macro defining an element to show for account disable #} {# typically, it used to link to a ticket tracker for an admin to perform the disable #} {% macro request_disable_account() %}
    {{_("Request account deletion")}}
    {% endmacro %} {% macro lost_otp_token() %}
    {{_("Did you lose your OTP token?")}}
    {% set admin_email %} admin@fedoraproject.org {% endset %}

    {{_("If you have lost your OTP token you need to send an email to %(admin_email)s. Please sign this email using the GPG key associated with your account if possible, so that the administrator can verify your identity.", admin_email=admin_email)}}

    {% endmacro %}