Files
tradon/res/email_reset_password.html
2025-12-26 13:11:43 +00:00

29 lines
1.5 KiB
HTML
Executable File

<!DOCTYPE html>
<html xmlns:py="http://genshi.edgewall.org/" xmlns:i18n="http://genshi.edgewall.org/i18n">
<head>
<title>Reset Password</title>
</head>
<body>
<div style="display: block; text-align: center">
<div>
<h1>Reset Password</h1>
<p i18n:msg="login,password,host,database,http_host,database">
Hello,
we have received a request to reset the password for the account associated with <strong>${record.login}</strong>. No changes have been made to your account yet.<br/>
You can connect with this temporary password <strong>${record.password_reset}</strong> to<br/>
<a href="tryton://${host}/${database}">tryton://${host}/${database}</a><br/>
<a href="${http_host}/#${database}">${http_host}/#${database}</a><br/>
You must set a new one from the user's preferences.<br/>
</p>
</div>
<hr style="margin-top: 20px; border-style: solid none none; border-color: #EEE"/>
<div style="font-size: 80%; color: #777">
<p i18n:msg="datetime,expire_delay">
The password will expire in <time datetime="${record.password_reset_expire.isoformat()}">${format_timedelta(expire_delay)}</time>.
</p>
<p>If you didn't make this request, you can safely ignore this email.</p>
</div>
</div>
</body>
</html>