mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-14 23:53:10 +00:00
24 lines
1 KiB
HTML
24 lines
1 KiB
HTML
{% extends "registration/registration_base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block page-title %}{% trans "Confirm password reset" %}{% endblock page-title %}
|
|
|
|
{% block body-attrs %} class="standalone"{% endblock body-attrs %}
|
|
|
|
{% block content %}
|
|
<div class="{{ fobi_theme.custom_data.page_header_html_class }}">
|
|
<h1>{% trans "Confirm password reset" %}</h1>
|
|
</div>
|
|
|
|
<p>{% trans "Enter your new password below to reset your password:" %}</p>
|
|
<form method="post" action="{{ request.path }}" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{% include "fobi/snippets/generic_form_snippet.html" %}
|
|
<div class="{{ fobi_theme.custom_data.form_button_outer_wrapper_html_class }}">
|
|
<div class="{{ fobi_theme.custom_data.form_button_wrapper_html_class }}">
|
|
<button type="submit" class="{{ fobi_theme.custom_data.form_button_html_class }} {{ fobi_theme.custom_data.form_primary_button_html_class }}">{% trans "Set password" %}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock content %}
|