forked from gitea/gitea
		
	 15c035775a
			
		
	
	
		15c035775a
		
			
		
	
	
	
	
		
			
			* Add main aria landmark to templates * Adjust some titles to improve understanding of location in navigation Contributed by @Forgejo
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{template "base/head" .}}
 | |
| <div role="main" aria-label="{{.Title}}" class="page-content user settings twofa">
 | |
| 	{{template "user/settings/navbar" .}}
 | |
| 	<div class="ui container">
 | |
| 		{{template "base/alert" .}}
 | |
| 		<h4 class="ui top attached header">
 | |
| 			{{.locale.Tr "settings.twofa_enroll"}}
 | |
| 		</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			<p>{{.locale.Tr "settings.scan_this_image"}}</p>
 | |
| 			<img src="{{.QrUri}}" alt="{{.TwofaSecret}}">
 | |
| 			<p>{{.locale.Tr "settings.or_enter_secret" .TwofaSecret}}
 | |
| 			<p>{{.locale.Tr "settings.then_enter_passcode"}}
 | |
| 			<form class="ui form" action="{{.Link}}" method="post">
 | |
| 				{{.CsrfTokenHtml}}
 | |
| 				<div class="inline required field {{if .Err_Passcode}}error{{end}}">
 | |
| 					<label for="passcode">{{.locale.Tr "passcode"}}</label>
 | |
| 					<input id="passcode" name="passcode" autofocus required>
 | |
| 				</div>
 | |
| 				<div class="inline field">
 | |
| 					<label></label>
 | |
| 					<button class="ui green button">{{.locale.Tr "auth.verify"}}</button>
 | |
| 				</div>
 | |
| 			</form>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| {{template "base/footer" .}}
 |