You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							39 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							39 lines
						
					
					
						
							1.7 KiB
						
					
					
				{{template "ng/base/head" .}} 
 | 
						|
{{template "ng/base/header" .}}
 | 
						|
<div id="sign-wrapper">
 | 
						|
    <form class="form-align form panel sign-panel sign-form container panel-radius" id="sign-up-form" action="/user/activate" method="post">
 | 
						|
        {{.CsrfTokenHtml}}
 | 
						|
        <div class="panel-header">
 | 
						|
            <h2>{{.i18n.Tr "auth.active_your_account"}}</h2>
 | 
						|
        </div>
 | 
						|
        <div class="panel-content">
 | 
						|
        {{if .IsActivatePage}}
 | 
						|
            {{if .ServiceNotEnabled}}
 | 
						|
            <p>{{.i18n.Tr "auth.disable_register_mail"}}</p>
 | 
						|
            {{else if .ResendLimited}}
 | 
						|
            <p>{{.i18n.Tr "auth.resent_limit_prompt"}}</p>
 | 
						|
            {{else}}
 | 
						|
            <p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .SignedUser.Email .Hours | Str2html}}</p>
 | 
						|
            <hr/>
 | 
						|
            <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>
 | 
						|
            {{end}}
 | 
						|
        {{else}}
 | 
						|
            {{if .IsSendRegisterMail}}
 | 
						|
            <p>{{.i18n.Tr "auth.confirmation_mail_sent_prompt" .Email .Hours | Str2html}}</p>
 | 
						|
            <hr/>
 | 
						|
            <label></label>
 | 
						|
            <a class="btn btn-green btn-large btn-link btn-radius" href="http://{{Mail2Domain .Email}}">{{.i18n.Tr "auth.sign_in_email"}}</a>
 | 
						|
            {{else if .IsActivateFailed}}
 | 
						|
            <p>{{.i18n.Tr "auth.invalid_code"}}</p>
 | 
						|
            {{else}}
 | 
						|
            <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>
 | 
						|
            {{end}}
 | 
						|
        {{end}}
 | 
						|
        </div>
 | 
						|
    </form>
 | 
						|
</div>
 | 
						|
{{template "ng/base/footer" .}}
 | 
						|
 |