mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 15:26:56 +02:00

* Password reset by email Adds endpoint, templates, email templates, forms * Timeout password reset request in six hours
24 lines
607 B
HTML
24 lines
607 B
HTML
<html>
|
|
<head>
|
|
<title>{{ config.GLOBAL_SITE_NAME }} password reset request</title>
|
|
<style type="text/css">
|
|
.well {
|
|
display: inline-block;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
background-color: rgb(240, 240, 240)
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
{{ user.username }}, you've requested to reset your password on {{ config.GLOBAL_SITE_NAME }}. Click the link below to change your password:
|
|
</div>
|
|
<div class="well">
|
|
<a href="{{ reset_link }}">{{ reset_link }}</a>
|
|
</div>
|
|
<div>
|
|
If you did not request a password reset, you may ignore this email.
|
|
</div>
|
|
</body>
|
|
</html>
|