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

Restore access

{% if oauth_type %}

This site has 🔑 Single Sign On enabled. Please first try to reset your password using {{ oauth_type }}.

{% endif %} {% if config.DRIBDAT_NOT_REGISTER %}

Registration is currently disabled in this application. How very hacky. Please contact the organizers, and ask them to change your password in the Admin.

{% elif config.MAIL_SERVER %}

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

{{ render_form(url_for('auth.passwordless'), form) }}
{% else %}

Please contact the organizers, and ask them to change your password in the Admin - or enable the Mail service for Dribdat to let you do this yourself.

{% endif %}
{% endblock %}