feat: add spacing in reset password email template

This commit is contained in:
Ali BARIN
2023-03-03 14:36:19 +00:00
parent a53961b235
commit f094da6a4b

View File

@@ -1,16 +1,23 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<title>Reset password instructions</title>
</head>
<body>
Hello {{ email }}
<p>
Hello {{ email }},
</p>
Someone has requested a link to change your password, and you can do this through the link below.
<p>
Someone has requested a link to change your password, and you can do this through the link below.
</p>
<p>
<a href="{{ webAppUrl }}/reset-password?token={{ token }}">Change my password</a>
</p>
If you didn't request this, please ignore this email.
Your password won't change until you access the link above and create a new one.
<p>
If you didn't request this, please ignore this email. Your password won't change until you access the link above and create a new one.
</p>
</body>
</html>