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

17 lines
581 B
Handlebars

<!DOCTYPE html>
<html>
<head>
{{template "mail/base/head" (.locale.Tr "mail.register_notify.title" (.DisplayName|DotEscape) AppName)}}
</head>
{{$set_pwd_url := printf "%[1]suser/forgot_password" AppUrl}}
<body>
<p>{{.locale.Tr "mail.hi_user_x" (.DisplayName|DotEscape)}}</p>
<p>{{.locale.Tr "mail.register_notify.text_1" AppName}}</p>
<p>{{.locale.Tr "mail.register_notify.text_2" .Username}}</p><p><a href="{{AppUrl}}user/login">{{AppUrl}}user/login</a></p>
<p>{{.locale.Tr "mail.register_notify.text_3" $set_pwd_url}}</p>
{{template "mail/base/footer"}}
</body>
</html>