mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 13:19:17 +01:00
be81dc8b20
close #14822
16 lines
678 B
Handlebars
16 lines
678 B
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>{{.i18n.Tr "mail.activate_account.title" .DisplayName}}</title>
|
|
</head>
|
|
|
|
{{ $activate_url := printf "%suser/activate?code=%s" AppUrl .Code}}
|
|
<body>
|
|
<p>{{.i18n.Tr "mail.activate_account.test_1" .DisplayName AppName | Str2html}}</p><br>
|
|
<p>{{.i18n.Tr "mail.activate_account.test_2" .ActiveCodeLives | Str2html}}</p><p><a href="{{$activate_url}}">{{$activate_url}}</a></p><br>
|
|
<p>{{.i18n.Tr "mail.link_not_working_do_paste" .DisplayName AppName | Str2html}}</p>
|
|
|
|
<p>© <a target="_blank" rel="noopener noreferrer" href="{{AppUrl}}">{{AppName}}</a></p>
|
|
</body>
|
|
</html>
|