diff --git a/users/templates/users/password_reset_confirm.html b/users/templates/users/password_reset_confirm.html new file mode 100644 index 0000000..793a1b8 --- /dev/null +++ b/users/templates/users/password_reset_confirm.html @@ -0,0 +1,84 @@ +{% extends "base.html" %} + +{% block title %}Neues Passwort setzen{% endblock %} + +{% block content %} +
+
+
+
+

Neue Passwort setzen

+ {% if user.is_authenticated %} + Du bist gerade eingeloggt!
+ Wieso willst du dein Passwort zurücksetzen? Bist du betrunken?
+ Wenn ja dann geh nach hause, ansonsten erstmal + ausloggen
+ {% else %} +
+ {% csrf_token %} + +
+
+ +
+
+
+
+ + + + + + {% if form.new_password1.errors %} + + {% endif %} + +
+

+ {{form.new_password1.errors.as_text}} +

+
+
+
+ +
+
+ +
+
+
+
+ + + + + + {% if form.new_password2.errors %} + + {% endif %} + +
+

+ {{form.new_password2.errors.as_text}} +

+
+
+
+ +
+

+ +

+
+
+ + {% endif %} +
+
+
+
+{% endblock %}