Files
Atay-Makhzan/templates/mail/auth/activate.tmpl
T

17 lines
660 B
Handlebars
Raw Normal View History

<!DOCTYPE html>
2015-12-07 23:30:52 +01:00
<html>
<head>
2015-12-07 23:30:52 +01:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2021-06-23 14:33:21 +02:00
<title>{{.i18n.Tr "mail.activate_account.title" .DisplayName}}</title>
</head>
2021-11-16 18:18:25 +00:00
{{ $activate_url := printf "%suser/activate?code=%s" AppUrl (QueryEscape .Code)}}
<body>
<p>{{.i18n.Tr "mail.activate_account.text_1" .DisplayName AppName | Str2html}}</p><br>
<p>{{.i18n.Tr "mail.activate_account.text_2" .ActiveCodeLives | Str2html}}</p><p><a href="{{$activate_url}}">{{$activate_url}}</a></p><br>
<p>{{.i18n.Tr "mail.link_not_working_do_paste"}}</p>
2021-06-23 14:33:21 +02:00
<p>© <a target="_blank" rel="noopener noreferrer" href="{{AppUrl}}">{{AppName}}</a></p>
</body>
</html>