diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-08-16 16:21:17 +0800 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-08-16 16:21:17 +0800 |
commit | bba707de36d9bfbdb3001e3e89fac0c072aa14e9 (patch) | |
tree | 2b3ee7fc662baea04cecdf14b8a2758c108f83cc /templates/user/auth/forgot_passwd.tmpl | |
parent | 78add502d71dca43bb59ab9ad91745c64d0bf74d (diff) | |
download | gitea-bba707de36d9bfbdb3001e3e89fac0c072aa14e9.tar.gz gitea-bba707de36d9bfbdb3001e3e89fac0c072aa14e9.zip |
Finish team list, create new team, join/leave team page
Diffstat (limited to 'templates/user/auth/forgot_passwd.tmpl')
-rw-r--r-- | templates/user/auth/forgot_passwd.tmpl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/user/auth/forgot_passwd.tmpl b/templates/user/auth/forgot_passwd.tmpl new file mode 100644 index 0000000000..3b5512673b --- /dev/null +++ b/templates/user/auth/forgot_passwd.tmpl @@ -0,0 +1,32 @@ +{{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/forget_password" method="post"> + {{.CsrfTokenHtml}} + <div class="panel-header"> + <h2>{{.i18n.Tr "auth.forgot_password"}}</h2> + </div> + <div class="panel-content"> + {{template "ng/base/alert" .}} + {{if .IsResetSent}} + <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 .IsResetRequest}} + <div class="field"> + <label class="req" for="email">{{.i18n.Tr "email"}}</label> + <input class="ipt ipt-large ipt-radius {{if .Err_Email}}ipt-error{{end}}" id="email" name="email" type="email" value="{{.email}}"required/> + </div> + <hr/> + <label></label> + <button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "auth.send_reset_mail"}}</button> + {{else if .IsResetDisable}} + <p>{{.i18n.Tr "auth.disable_register_mail"}}</p> + {{else if .ResendLimited}} + <p>{{.i18n.Tr "auth.resent_limit_prompt"}}</p> + {{end}} + </div> + </form> +</div> +{{template "ng/base/footer" .}} |