mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-11 00:10:38 -05:00
16 lines
555 B
Handlebars
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>
|