gitea/templates/user/auth/activate.tmpl

40 lines
1.8 KiB
Cheetah
Raw Normal View History

{{template "ng/base/head" .}}
2014-08-10 06:02:00 +02:00
{{template "ng/base/header" .}}
<div id="sign-wrapper">
2014-09-20 02:11:34 +02:00
<form class="form-align form panel sign-panel sign-form container panel-radius" id="sign-up-form" action="{{AppSubUrl}}/user/activate" method="post">
2014-03-22 18:44:02 +01:00
{{.CsrfTokenHtml}}
2014-08-10 06:02:00 +02:00
<div class="panel-header">
<h2>{{.i18n.Tr "auth.active_your_account"}}</h2>
</div>
<div class="panel-content">
2014-03-19 14:24:02 +01:00
{{if .IsActivatePage}}
2014-03-19 15:46:48 +01:00
{{if .ServiceNotEnabled}}
2014-08-10 06:02:00 +02:00
<p>{{.i18n.Tr "auth.disable_register_mail"}}</p>
2014-03-21 15:09:57 +01:00
{{else if .ResendLimited}}
2014-08-10 06:02:00 +02:00
<p>{{.i18n.Tr "auth.resent_limit_prompt"}}</p>
2014-03-19 15:46:48 +01:00
{{else}}
2014-08-10 06:02:00 +02:00
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .SignedUser.Email .Hours | Str2html}}</p>
2014-03-19 17:50:44 +01:00
<hr/>
2014-08-10 06:02:00 +02:00
<label></label>
<a class="btn btn-green btn-large btn-link btn-radius" href="http://{{Mail2Domain .SignedUser.Email}}">{{.i18n.Tr "auth.sign_in_email"}}</a>
2014-03-19 15:46:48 +01:00
{{end}}
2014-03-19 14:24:02 +01:00
{{else}}
2014-03-19 15:46:48 +01:00
{{if .IsSendRegisterMail}}
2014-08-10 06:02:00 +02:00
<p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p>
2014-03-19 17:50:44 +01:00
<hr/>
2014-08-10 06:02:00 +02:00
<label></label>
2015-09-16 21:34:46 +02:00
<a class="btn btn-green btn-large btn-link btn-radius" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_to_account"}}</a>
2014-03-19 17:50:44 +01:00
{{else if .IsActivateFailed}}
2014-08-10 06:02:00 +02:00
<p>{{.i18n.Tr "auth.invalid_code"}}</p>
2014-03-19 15:46:48 +01:00
{{else}}
2014-08-10 06:02:00 +02:00
<p>{{.i18n.Tr "auth.has_unconfirmed_mail" .SignedUser.Name .SignedUser.Email | Str2html}}</p>
<hr/>
<label></label>
<button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "auth.resend_mail"}}</button>
2014-03-19 15:46:48 +01:00
{{end}}
2014-03-19 14:24:02 +01:00
{{end}}
2014-08-10 06:02:00 +02:00
</div>
2014-03-19 14:24:02 +01:00
</form>
</div>
2014-08-10 06:02:00 +02:00
{{template "ng/base/footer" .}}