2014-07-26 06:24:27 +02:00
|
|
|
{{template "ng/base/head" .}}
|
|
|
|
{{template "ng/base/header" .}}
|
|
|
|
<div id="sign-wrapper">
|
2014-09-20 02:11:34 +02:00
|
|
|
<form class="form-align form panel panel-radius sign-panel sign-form container" id="sign-up-form" action="{{AppSubUrl}}/user/sign_up" method="post">
|
2014-07-26 06:24:27 +02:00
|
|
|
<div class="panel-header">
|
2014-08-10 02:25:02 +02:00
|
|
|
<h2>{{if .IsSocialLogin}}{{.i18n.Tr "social_sign_in" | Str2html}}{{else}}{{.i18n.Tr "sign_up"}}{{end}}</h2>
|
2014-07-26 06:24:27 +02:00
|
|
|
</div>
|
|
|
|
<div class="panel-content">
|
2014-07-27 05:53:16 +02:00
|
|
|
{{template "ng/base/alert" .}}
|
2014-07-26 06:24:27 +02:00
|
|
|
{{if .DisableRegistration}}
|
|
|
|
<p>{{.i18n.Tr "auth.disable_register_prompt"}}</p>
|
|
|
|
{{else}}
|
2014-08-10 06:02:00 +02:00
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<label class="req" for="username">{{.i18n.Tr "username"}}</label>
|
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_UserName}}ipt-error{{end}}" id="username" name="uname" type="text" value="{{.uname}}" required/>
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<label class="req" for="email">{{.i18n.Tr "email"}}</label>
|
2014-08-29 09:32:52 +02:00
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Email}}ipt-error{{end}}" id="email" name="email" type="email" value="{{.email}}" required />
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<label class="req" for="password">{{.i18n.Tr "password"}}</label>
|
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Password}}ipt-error{{end}}" id="password" name="password" type="password" value="{{.password}}" required/>
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<label class="req" for="re-type">{{.i18n.Tr "re_type"}}</label>
|
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Password}}ipt-error{{end}}" id="re-type" name="retype" type="password" required/>
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<label></label>
|
2014-07-31 23:25:34 +02:00
|
|
|
{{.Captcha.CreateHtml}}
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<label class="req" for="captcha">{{.i18n.Tr "captcha"}}</label>
|
|
|
|
<input class="ipt ipt-large ipt-radius {{if .Err_Captcha}}ipt-error{{end}}" id="captcha" name="captcha" type="text" required/>
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<span class="form-label"></span>
|
|
|
|
<button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "auth.create_new_account"}}</button>
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
|
|
|
<div class="field">
|
2014-07-26 06:24:27 +02:00
|
|
|
<span class="form-label"></span>
|
2014-09-20 02:11:34 +02:00
|
|
|
<a href="{{AppSubUrl}}/user/login">{{if .IsSocialLogin}}{{.i18n.Tr "auth.social_register_hepler_msg"}}{{else}}{{.i18n.Tr "auth.register_hepler_msg"}}{{end}}</a>
|
2014-08-10 06:02:00 +02:00
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</form>
|
2014-02-18 00:38:50 +01:00
|
|
|
</div>
|
2014-07-26 06:24:27 +02:00
|
|
|
{{template "ng/base/footer" .}}
|