bench-forgejo/templates/user/auth/activate.tmpl

39 lines
1.5 KiB
Cheetah
Raw Normal View History

{{template "base/head" .}}
<div class="user activate">
<div class="ui middle very relaxed page grid">
<div class="column">
<form class="ui form" action="{{AppSubUrl}}/user/activate" method="post">
2014-03-22 23:14:02 +05:30
{{.CsrfTokenHtml}}
<h2 class="ui top attached header">
{{.i18n.Tr "auth.active_your_account"}}
</h2>
<div class="ui attached segment">
2015-09-18 00:27:24 +05:30
{{template "base/alert" .}}
{{if .IsActivatePage}}
2014-03-19 20:16:48 +05:30
{{if .ServiceNotEnabled}}
2015-09-18 00:27:24 +05:30
<p class="center">{{.i18n.Tr "auth.disable_register_mail"}}</p>
2014-03-21 19:39:57 +05:30
{{else if .ResendLimited}}
2015-09-18 00:27:24 +05:30
<p class="center">{{.i18n.Tr "auth.resent_limit_prompt"}}</p>
2014-03-19 20:16:48 +05:30
{{else}}
2015-09-18 00:27:24 +05:30
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .SignedUser.Email .Hours | Str2html}}</p>
2014-03-19 20:16:48 +05:30
{{end}}
{{else}}
2014-03-19 20:16:48 +05:30
{{if .IsSendRegisterMail}}
2015-09-18 00:27:24 +05:30
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p>
2014-03-19 22:20:44 +05:30
{{else if .IsActivateFailed}}
2015-09-18 00:27:24 +05:30
<p>{{.i18n.Tr "auth.invalid_code"}}</p>
2014-03-19 20:16:48 +05:30
{{else}}
2015-09-18 00:27:24 +05:30
<p>{{.i18n.Tr "auth.has_unconfirmed_mail" .SignedUser.Name .SignedUser.Email | Str2html}}</p>
<div class="ui divider"></div>
<div class="text right">
<button class="ui blue button">{{.i18n.Tr "auth.resend_mail"}}</button>
</div>
2014-03-19 20:16:48 +05:30
{{end}}
{{end}}
2014-08-10 09:32:00 +05:30
</div>
</form>
</div>
</div>
2014-03-19 18:54:02 +05:30
</div>
{{template "base/footer" .}}