mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-16 09:54:27 +01:00
- Moved mail templates to new directories. - Added new devtest ymls. - Embedded styles as much as possible. - Added new translation keys for actions email. --------- Signed-off-by: NorthRealm <155140859+NorthRealm@users.noreply.github.com> Co-authored-by: delvh <dev.lh@web.de>
19 lines
758 B
Handlebars
19 lines
758 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="format-detection" content="telephone=no,date=no,address=no,email=no,url=no">
|
|
<title>{{.locale.Tr "mail.register_notify.title" (.DisplayName|DotEscape) AppName}}</title>
|
|
</head>
|
|
|
|
{{$set_pwd_url := printf "%[1]suser/forgot_password" AppUrl}}
|
|
<body>
|
|
<p>{{.locale.Tr "mail.hi_user_x" (.DisplayName|DotEscape)}}</p><br>
|
|
<p>{{.locale.Tr "mail.register_notify.text_1" AppName}}</p><br>
|
|
<p>{{.locale.Tr "mail.register_notify.text_2" .Username}}</p><p><a href="{{AppUrl}}user/login">{{AppUrl}}user/login</a></p><br>
|
|
<p>{{.locale.Tr "mail.register_notify.text_3" $set_pwd_url}}</p><br>
|
|
|
|
<p>© <a href="{{AppUrl}}">{{AppName}}</a></p>
|
|
</body>
|
|
</html>
|