From f490626b8a2ff360c4a914615484ea6e5bf8cdee Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Sat, 19 Oct 2024 12:38:45 +0200 Subject: Add modern theme --- src/application/templates/modern/new_password.twig | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/application/templates/modern/new_password.twig (limited to 'src/application/templates/modern/new_password.twig') diff --git a/src/application/templates/modern/new_password.twig b/src/application/templates/modern/new_password.twig new file mode 100644 index 0000000..64854b6 --- /dev/null +++ b/src/application/templates/modern/new_password.twig @@ -0,0 +1,38 @@ +{% set title = __("Reset password") %} +{% set formId = "pwnew" %} +{% set formError = getAndClearFormError(formId) %} + +{% extends "base.twig" %} + +{% block content %} + + + +
+ {% if formError %} + {% include "components/alert_error.twig" with { message: formError } %} + {% endif %} +
+ + + + +
+ + +
+ +
+ + +
+ +
+ +
+
+
+ +{% endblock %} -- cgit v1.2.3