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