aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/auth/signup.tmpl
blob: c237a20d8520caa9746f76447a46c072ae44b119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{{template "base/head" .}}
<div class="user signup">
  <div class="ui middle very relaxed page grid">
    <div class="column">
      <form class="ui form" action="{{.Link}}" method="post">
        {{.CsrfTokenHtml}}
        <h3 class="ui top attached header">
          {{if .IsSocialLogin}}{{.i18n.Tr "social_sign_in" | Str2html}}{{else}}{{.i18n.Tr "sign_up"}}{{end}}
        </h3>
        <div class="ui attached segment">
          {{template "base/alert" .}}
	        {{if .DisableRegistration}}
	        <p>{{.i18n.Tr "auth.disable_register_prompt"}}</p>
	        {{else}}
          <div class="required inline field {{if .Err_UserName}}error{{end}}">
            <label for="user_name">{{.i18n.Tr "username"}}</label>
            <input id="user_name" name="user_name" value="{{.user_name}}" autofocus required>
          </div>
          <div class="required inline field {{if .Err_Email}}error{{end}}">
            <label for="email">{{.i18n.Tr "email"}}</label>
            <input id="email" name="email" type="email" value="{{.email}}" required>
          </div>
          <div class="required inline field {{if .Err_Password}}error{{end}}">
            <label for="password">{{.i18n.Tr "password"}}</label>
            <input id="password" name="password" type="password" value="{{.password}}" required>
          </div>
          <div class="required inline field {{if .Err_Password}}error{{end}}">
            <label for="retype">{{.i18n.Tr "re_type"}}</label>
            <input id="retype" name="retype" type="password" value="{{.retype}}" required>
          </div>
          {{if .EnableCaptcha}}
          <div class="inline field">
            <label></label>
            {{.Captcha.CreateHtml}}
          </div>
          <div class="required inline field {{if .Err_Captcha}}error{{end}}">
            <label for="captcha">{{.i18n.Tr "captcha"}}</label>
            <input id="captcha" name="captcha" value="{{.captcha}}" autocomplete="off">
          </div>
          {{end}}

          <div class="inline field">
            <label></label>
            <button class="ui green button">{{.i18n.Tr "auth.create_new_account"}}</button>
          </div>
          <div class="inline field">
            <label></label>
            <a href="{{AppSubUrl}}/user/login">{{if .IsSocialLogin}}{{.i18n.Tr "auth.social_register_hepler_msg"}}{{else}}{{.i18n.Tr "auth.register_hepler_msg"}}{{end}}</a>
          </div>
        	{{end}}
        </div>
      </form>
    </div>
  </div>
</div>
{{template "base/footer" .}}