gitea/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 18:44:02 +01:00
{{.CsrfTokenHtml}}
<h2 class="ui top attached header">
{{.i18n.Tr "auth.active_your_account"}}
</h2>
<div class="ui attached segment">
2015-09-17 20:57:24 +02:00
{{template "base/alert" .}}
{{if .IsActivatePage}}
2014-03-19 15:46:48 +01:00
{{if .ServiceNotEnabled}}
2015-09-17 20:57:24 +02:00
<p class="center">{{.i18n.Tr "auth.disable_register_mail"}}</p>
2014-03-21 15:09:57 +01:00
{{else if .ResendLimited}}
2015-09-17 20:57:24 +02:00
<p class="center">{{.i18n.Tr "auth.resent_limit_prompt"}}</p>
2014-03-19 15:46:48 +01:00
{{else}}
2015-09-17 20:57:24 +02:00
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .SignedUser.Email .Hours | Str2html}}</p>
2014-03-19 15:46:48 +01:00
{{end}}
{{else}}
2014-03-19 15:46:48 +01:00
{{if .IsSendRegisterMail}}
2015-09-17 20:57:24 +02:00
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p>
2014-03-19 17:50:44 +01:00
{{else if .IsActivateFailed}}
2015-09-17 20:57:24 +02:00
<p>{{.i18n.Tr "auth.invalid_code"}}</p>
2014-03-19 15:46:48 +01:00
{{else}}
2015-09-17 20:57:24 +02:00
<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 15:46:48 +01:00
{{end}}
{{end}}
2014-08-10 06:02:00 +02:00
</div>
</form>
</div>
</div>
2014-03-19 14:24:02 +01:00
</div>
{{template "base/footer" .}}