mirror of
https://github.com/go-gitea/gitea
synced 2025-08-09 02:58:20 +00:00
Finish team list, create new team, join/leave team page
This commit is contained in:
25
templates/user/auth/reset_passwd.tmpl
Normal file
25
templates/user/auth/reset_passwd.tmpl
Normal file
@@ -0,0 +1,25 @@
|
||||
{{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/reset_password?code={{.Code}}" method="post">
|
||||
{{.CsrfTokenHtml}}
|
||||
<div class="panel-header">
|
||||
<h2>{{.i18n.Tr "auth.reset_password"}}</h2>
|
||||
</div>
|
||||
<div class="panel-content">
|
||||
{{template "ng/base/alert" .}}
|
||||
{{if .IsResetForm}}
|
||||
<div class="field">
|
||||
<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/>
|
||||
</div>
|
||||
<hr/>
|
||||
<label></label>
|
||||
<button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "auth.reset_password_helper"}}</button>
|
||||
{{else}}
|
||||
<p>{{.i18n.Tr "auth.invalid_code"}}</p>
|
||||
{{end}}
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
{{template "ng/base/footer" .}}
|
Reference in New Issue
Block a user