summaryrefslogtreecommitdiff
path: root/src/application/templates/old/new_password.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/new_password.twig
parent7c9f91333da983da37d3dc837fa61ef0bff64549 (diff)
Add classic theme
Diffstat (limited to 'src/application/templates/old/new_password.twig')
-rw-r--r--src/application/templates/old/new_password.twig40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/application/templates/old/new_password.twig b/src/application/templates/old/new_password.twig
new file mode 100644
index 0000000..02d6037
--- /dev/null
+++ b/src/application/templates/old/new_password.twig
@@ -0,0 +1,40 @@
+{% set title = __("Reset password") %}
+{% set formId = "pwnew" %}
+{% 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 }}">
+ <input type="hidden" name="token" value="{{ g.get.token }}">
+ <input type="hidden" name="sig" value="{{ g.get.sig }}">
+
+ <label for="i_new_password">{{ __("New password:") }}</label><br>
+ <input class="form-control" type="password" id="i_new_password" name="new_password" required><br>
+ <br>
+
+ <label for="i_retype_password">{{ __("Retype password:") }}</label><br>
+ <input class="form-control" type="password" id="i_retype_password" name="retype_password" required><br>
+ <br>
+
+ <button type="submit">{{ __("Set new password") }}</button>
+</form>
+
+{% endblock %}
+
+{% block scripts %}
+{{ parent() }}
+<script type="text/javascript">
+$(function() {
+ $("#i_new_password").focus();
+});
+</script>
+{% endblock %}