Skip to content

Commit

Permalink
fix reset link
Browse files Browse the repository at this point in the history
  • Loading branch information
antedebaas committed Oct 13, 2024
1 parent 6a2b656 commit 2b808b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/emails/reset_email.html.twig
Original file line number Diff line number Diff line change
@@ -17,9 +17,9 @@
<h1>You requested to reset your password.</h1>.<br>
<br>
To reset your password, please visit the following link<br>
<a href="{{ resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') }}">Reset password</a><br>
<a href="{{ url('app_reset_password', {token: resetToken.token}) }}">Reset password</a><br>
Is the link not working? Copy and paste the link below into your web browser:<br>
{{ resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') }}<br>
{{ url('app_reset_password', {token: resetToken.token}) }}<br>
<br>
This link will expire in {{ resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') }}.<br>
If you did not make this request, you can ignore this email<br>

0 comments on commit 2b808b3

Please sign in to comment.