Files
gitea-MIRROR/templates/mail/user/auth/reset_passwd.tmpl
2026-09-09 17:58:27 +00:00

16 lines
555 B
Handlebars

<!DOCTYPE html>
<html>
<head>
{{template "mail/base/head" (.locale.Tr "mail.reset_password.title" (.DisplayName|DotEscape))}}
</head>
{{$recover_url := printf "%suser/recover_account?code=%s" AppUrl (QueryEscape .Code)}}
<body>
<p>{{.locale.Tr "mail.hi_user_x" (.DisplayName|DotEscape)}}</p>
<p>{{.locale.Tr "mail.reset_password.text" .ResetPwdCodeLives}}</p><p style="word-break: break-all;"><a href="{{$recover_url}}">{{$recover_url}}</a></p>
<p>{{.locale.Tr "mail.link_not_working_do_paste"}}</p>
{{template "mail/base/footer"}}
</body>
</html>