{% from "macros/_form.html" import render_form %} {% extends "layout.html" %} {% block page_title %}User access{% endblock %} {% block body_class %}userform forgot{% endblock %} {% block content %}

Sign in


{% if config.DRIBDAT_HELP_REGISTER %}

{{ config.DRIBDAT_HELP_REGISTER|markdown }}

{% endif %} {% if oauth_type %}

This site has Single Sign On, so you can try to 🔑 Login with {{ oauth_type }}

{% endif %} {% if config.MAIL_SERVER %}

Enter an e-mail address you registered with to receive a login link.

{{ render_form(url_for('auth.passwordless'), form, formid='forgotForm') }}
{% if config.DRIBDAT_ALLOW_LOGINS %}

Or log in with a password.

{% endif %} {% elif config.DRIBDAT_NOT_REGISTER %}
Registration is currently unavailable

How very hacky. Please contact the organizers, and ask them to change your password in the Admin.

{% else %}
Please contact the organizers

You will need to ask their help to restore access.

If you are an admin, see the docs and f.a.q. on enabling Mail services or setting up a Single Sign-On provider.

{% endif %}
{% endblock %}