46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
<%if (format === 'text') { %>
|
|
|
|
Hi <%= user.displayName || user.username || user.email %>,
|
|
|
|
Someone, hopefully you, has requested your account's password
|
|
be reset. If you did not request this reset, please ignore this message.
|
|
|
|
To reset your password, please visit the following page:
|
|
<%- resetLink %>
|
|
|
|
Please note that the password reset link will expire in 24 hours.
|
|
|
|
Powered by https://cloudron.io
|
|
|
|
<% } else { %>
|
|
|
|
<center>
|
|
|
|
<img src="<%= cloudronAvatarUrl %>" width="128px" height="128px"/>
|
|
|
|
<h3>Hi <%= user.displayName || user.username || user.email %>,</h3>
|
|
|
|
<p>
|
|
Someone, hopefully you, has requested your account's password be reset.<br/>
|
|
If you did not request this reset, please ignore this message.
|
|
</p>
|
|
|
|
<p>
|
|
<a href="<%= resetLink %>">Click to reset your password</a>
|
|
</p>
|
|
|
|
<br/>
|
|
|
|
Please note that the password reset link will expire in 24 hours.
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
<div style="font-size: 10px; color: #333333; background: #ffffff;">
|
|
Powered by <a href="https://cloudron.io">Cloudron</a>
|
|
</div>
|
|
|
|
</center>
|
|
|
|
<% } %>
|