diff --git a/adhocracy-plus/templates/account/password_set.html b/adhocracy-plus/templates/account/password_set.html new file mode 100644 index 000000000..05ca249b6 --- /dev/null +++ b/adhocracy-plus/templates/account/password_set.html @@ -0,0 +1,37 @@ +{% extends "a4_candy_account/account_dashboard.html" %} + +{% load i18n %} + +{% block title %}{% translate "Set password" %} — {{ block.super }}{% endblock title %} + +{% block dashboard_content %} +

{% translate "Set your password" %}

+ +
+ {% csrf_token %} + + {% if form.non_field_errors %} +
+ {% for error in form.non_field_errors %} +

{{ error }}

+ {% endfor %} +
+ {% endif %} + +
+ + {{ form.password1.errors }} + {{ form.password1 }} +
+ +
+ + {{ form.password2.errors }} + {{ form.password2 }} +
+ +
+ +
+
+{% endblock dashboard_content %}