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.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							1.1 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="{{AppSubUrl}}/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" .}}
 | |
| 
 |