We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf97470 commit 3dae717Copy full SHA for 3dae717
readthedocsext/theme/templates/account/password_set.html
@@ -0,0 +1,23 @@
1
+{% extends "profiles/base_edit.html" %}
2
+
3
+{% load trans from i18n %}
4
+{% load crispy from crispy_forms_tags %}
5
6
+{% block title %}
7
+ {% trans "Set password" %}
8
+{% endblock title %}
9
+{% block profile_admin_change_password %}
10
+ active
11
+{% endblock profile_admin_change_password %}
12
+active
13
+{% block edit_content_header %}
14
15
+{% endblock edit_content_header %}
16
17
+{% block edit_content %}
18
+ <form method="post" action="." class="ui form">
19
+ {% csrf_token %}
20
+ {{ form|crispy }}
21
+ <button class="ui primary button" type="submit">{% trans "Save" %}</button>
22
+ </form>
23
+{% endblock edit_content %}
0 commit comments