From 7d685c5e64149e20c7dc8977f645e050be53ddfd Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Tue, 10 Dec 2024 17:15:10 +0100 Subject: Add classic theme --- src/application/templates/old/password_reset.twig | 45 +++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/application/templates/old/password_reset.twig (limited to 'src/application/templates/old/password_reset.twig') diff --git a/src/application/templates/old/password_reset.twig b/src/application/templates/old/password_reset.twig new file mode 100644 index 0000000..c6e98c2 --- /dev/null +++ b/src/application/templates/old/password_reset.twig @@ -0,0 +1,45 @@ +{% set title = __("Reset password") %} +{% set formId = "pwreset" %} +{% set formError = getAndClearFormError(formId) %} + +{% extends "base.twig" %} + +{% block content %} + +
+

{{ __("Reset password") }}

+ +{% if formError %} + {% include "components/alert_error.twig" with { message: formError } %} +{% endif %} +
+ + +
+
+
+
+
+ + + + +
+ {{ __("I know my password and I want to %link%log in%/link%!", { + "link": '', + "/link": '', + }) }} +
+
+ +{% endblock %} + +{% block scripts %} +{{ parent() }} + +{% endblock %} + -- cgit v1.2.3