Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created March 27, 2024 21:14
Show Gist options
  • Save antonkalik/2852aebf9699e01dcc586e79b576fbe8 to your computer and use it in GitHub Desktop.
Save antonkalik/2852aebf9699e01dcc586e79b576fbe8 to your computer and use it in GitHub Desktop.
Password Reset Template
<!-- passwordResetTemplate.hbs -->
<html lang='en'>
<head>
<style>
a { color: #372aff; } .token { font-weight: bold; }
</style>
<title>Forgot Password</title>
</head>
<body>
<p>You requested a password reset. Please use the following link to reset your password:</p>
<a class='token' href="{{ host }}/reset-password/{{ token }}">Reset Password</a>
<p>If you did not request a password reset, please ignore this email.</p>
<img src="cid:email_logo" alt="Email Logo"/>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment