This email was send automatically by Part-DB. Dont answer to this email.
+
+
+
+
+
+{% endapply %}
\ No newline at end of file
diff --git a/templates/mail/pw_reset.html.twig b/templates/mail/pw_reset.html.twig
new file mode 100644
index 00000000..b6ddecf9
--- /dev/null
+++ b/templates/mail/pw_reset.html.twig
@@ -0,0 +1,30 @@
+{% extends "mail/base.html.twig" %}
+
+{% block content %}
+
+
+
Hi {{ user.fullName }},
+ somebody (hopefully you) requested an reset of your password.
+ If this request was not made by you, ignore this email.
+
+
+
+ If this dont work for you. Go to {{ url('pw_reset_new_pw') }}
+ and enter the following info:
+
+
+
+
+ Username: {{ user.name }}
+
+
+ Token: {{ token }}
+
+
+
+
+ The reset token will be valid until {{ expiration_date|format_datetime }}.
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/security/login.html.twig b/templates/security/login.html.twig
index 8abd0c25..10602265 100644
--- a/templates/security/login.html.twig
+++ b/templates/security/login.html.twig
@@ -59,4 +59,6 @@
+
+ {% trans %}pw_reset.password_forget{% endtrans %}
{% endblock %}
\ No newline at end of file
diff --git a/templates/security/pw_reset_new_pw.html.twig b/templates/security/pw_reset_new_pw.html.twig
new file mode 100644
index 00000000..9f199081
--- /dev/null
+++ b/templates/security/pw_reset_new_pw.html.twig
@@ -0,0 +1,11 @@
+{% extends "main_card.html.twig" %}
+
+{% block card_title %}
+
+ {% trans %}pw_reset.new_pw.header.title{% endtrans %}
+{% endblock %}
+
+{% block card_content %}
+ {{ form_start(form) }}
+ {{ form_end(form) }}
+{% endblock %}
\ No newline at end of file
diff --git a/templates/security/pw_reset_request.html.twig b/templates/security/pw_reset_request.html.twig
new file mode 100644
index 00000000..af8db2d2
--- /dev/null
+++ b/templates/security/pw_reset_request.html.twig
@@ -0,0 +1,11 @@
+{% extends "main_card.html.twig" %}
+
+{% block card_title %}
+
+ {% trans %}pw_reset.request.header.title{% endtrans %}
+{% endblock %}
+
+{% block card_content %}
+ {{ form_start(form) }}
+ {{ form_end(form) }}
+{% endblock %}
\ No newline at end of file