diff options
author | marvin-borner@live.com | 2018-04-16 21:09:05 +0200 |
---|---|---|
committer | marvin-borner@live.com | 2018-04-16 21:09:05 +0200 |
commit | cf14306c2b3f82a81f8d56669a71633b4d4b5fce (patch) | |
tree | 86700651aa180026e89a66064b0364b1e4346f3f /main/app/sprinkles/admin/templates/mail/password-create.html.twig | |
parent | 619b01b3615458c4ed78bfaeabb6b1a47cc8ad8b (diff) |
Main merge to user management system - files are now at /main/public/
Diffstat (limited to 'main/app/sprinkles/admin/templates/mail/password-create.html.twig')
-rwxr-xr-x | main/app/sprinkles/admin/templates/mail/password-create.html.twig | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/main/app/sprinkles/admin/templates/mail/password-create.html.twig b/main/app/sprinkles/admin/templates/mail/password-create.html.twig new file mode 100755 index 0000000..854eb77 --- /dev/null +++ b/main/app/sprinkles/admin/templates/mail/password-create.html.twig @@ -0,0 +1,19 @@ +{% block subject %} + {{site.title}} - please set a password for your new account +{% endblock %} + +{% block body %} +<p> + Dear {{user.first_name}}, +</p> +<p> + Someone has created an account for you with {{site.title}} ({{site.uri.public}}). Your username is <b>{{user.user_name}}</b>. +</p> +<p> + To access your account, you must first create a password by visiting: <a href="{{site.uri.public}}/account/set-password/confirm?token={{token}}">{{site.uri.public}}/account/set-password/confirm?token={{token}}</a>. This link has been generated especially for you, and will expire in {{create_password_expiration}}. Do not share it with anyone! +</p> +<p> + With regards,<br> + The {{site.title}} Team +</p> +{% endblock %}
\ No newline at end of file |