Noah
49ffa277e8
* Add "forgot password" workflow. * Add ability to change user email address (confirmation link sent) * Add ability to change user's password. * Add rate limiter to deter brute force login attempts. * Add user deep delete functionality (delete account). * Ping user LastLoginAt every 8 hours for long-lived session cookies. * Add age filters to user search page. * Add sort options to user search (last login, created, username/name)
25 lines
745 B
HTML
25 lines
745 B
HTML
{{define "content"}}
|
|
<html>
|
|
<body bakground="#ffffff" color="#000000" link="#0000FF" vlink="#990099" alink="#FF0000">
|
|
<basefont face="Arial,Helvetica,sans-serif" size="3" color="#000000"></basefont>
|
|
|
|
<h1>Reset your password</h1>
|
|
|
|
<p>Dear {{.Data.Username}},</p>
|
|
|
|
<p>
|
|
Somebody (hopefully you) has requested a password change to your account. To set a new
|
|
password, please visit the link below. If you did not request this password reset, please
|
|
notify support.
|
|
</p>
|
|
|
|
<p>
|
|
<a href="{{.Data.URL}}" target="_blank">{{.Data.URL}}</a>
|
|
</p>
|
|
|
|
<p>
|
|
This is an automated e-mail; do not reply to this message.
|
|
</p>
|
|
</body>
|
|
</html>
|
|
{{end}} |