first commit
This commit is contained in:
29
templates/account/base_reauthenticate.html
Executable file
29
templates/account/base_reauthenticate.html
Executable file
@@ -0,0 +1,29 @@
|
||||
{% extends "account/base_entrance.html" %}
|
||||
{% load allauth %}
|
||||
{% load i18n %}
|
||||
{% block head_title %}
|
||||
{% trans "Confirm Access" %}
|
||||
{% endblock head_title %}
|
||||
{% block content %}
|
||||
{% element h1 %}
|
||||
{% trans "Confirm Access" %}
|
||||
{% endelement %}
|
||||
{% element p %}
|
||||
{% blocktranslate %}Please reauthenticate to safeguard your account.{% endblocktranslate %}
|
||||
{% endelement %}
|
||||
{% block reauthenticate_content %}{% endblock %}
|
||||
{% if reauthentication_alternatives %}
|
||||
{% element hr %}
|
||||
{% endelement %}
|
||||
{% element h2 %}
|
||||
{% translate "Alternative options" %}
|
||||
{% endelement %}
|
||||
{% element button_group %}
|
||||
{% for alt in reauthentication_alternatives %}
|
||||
{% element button href=alt.url tags="primary,outline" %}
|
||||
{{ alt.description }}
|
||||
{% endelement %}
|
||||
{% endfor %}
|
||||
{% endelement %}
|
||||
{% endif %}
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user