summaryrefslogtreecommitdiff
path: root/src/application/templates/old/password_reset.twig
diff options
context:
space:
mode:
authorJonas Kohl2024-12-10 17:15:10 +0100
committerJonas Kohl2024-12-10 17:15:10 +0100
commit7d685c5e64149e20c7dc8977f645e050be53ddfd (patch)
tree44a931c23979aaa2e22b079f8af9232f490eb4d3 /src/application/templates/old/password_reset.twig
parent7c9f91333da983da37d3dc837fa61ef0bff64549 (diff)
Add classic theme
Diffstat (limited to 'src/application/templates/old/password_reset.twig')
-rw-r--r--src/application/templates/old/password_reset.twig45
1 files changed, 45 insertions, 0 deletions
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 %}
+
+<hr color="silver" noshade>
+<h1>{{ __("Reset password") }}</h1>
+
+{% if formError %}
+ {% include "components/alert_error.twig" with { message: formError } %}
+{% endif %}
+<form action="{{ g.server.REQUEST_URI }}" method="post">
+ <input type="hidden" name="form_id" value="{{ formId }}">
+
+ <label for="i_email">{{ __("Email address:") }}</label><br>
+ <input class="form-control" type="email" id="i_email" name="email" value="{{ lastFormField(formId, "email") }}" required><br>
+ <br>
+ <button type="submit">{{ __("Reset password") }}</button><br>
+ <br>
+ <table border="1" bordercolor="green" cellspacing="0" cellpadding="4">
+ <tr>
+ <td>
+ {{ __("I know my password and I want to %link%log in%/link%!", {
+ "link": '<a href="?_action=auth">',
+ "/link": '</a>',
+ }) }}
+ </td>
+ </tr>
+ </table>
+</form>
+
+{% endblock %}
+
+{% block scripts %}
+{{ parent() }}
+<script type="text/javascript">
+$(function() {
+ $("#i_email").focus();
+});
+</script>
+{% endblock %}
+