forked from gitea/gitea
		
	 69e332f432
			
		
	
	
		69e332f432
		
	
	
	
	
		
			
			Removed trailing whitespaces with ```sh for file in `grep -r " $" * | cut -d : -f 1 | sort | uniq | grep -v " "`; do sed -i 's/[ \t]*$//' $file; done ``` and some handwork.
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| {{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" .}}
 |