mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-12 22:06:55 +02:00
25 lines
607 B
HTML
25 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>
|