forked from gitea/gitea
		
	 eea58a5d55
			
		
	
	
		eea58a5d55
		
			
		
	
	
	
	
		
			
			Fix #25628 Diff with ignoring space: https://github.com/go-gitea/gitea/pull/25629/files?diff=unified&w=1 The "modal" shouldn't appear between "ui attached segment", otherwise these segments lose margin-top. After the fix: <details>     </details>
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| <h4 class="ui top attached header">
 | |
| 	{{.locale.Tr "settings.twofa"}}
 | |
| </h4>
 | |
| <div class="ui attached segment">
 | |
| 	<p>{{.locale.Tr "settings.twofa_desc"}}</p>
 | |
| 	{{if .TOTPEnrolled}}
 | |
| 	<p>{{$.locale.Tr "settings.twofa_is_enrolled" | Str2html}}</p>
 | |
| 	<form class="ui form" action="{{AppSubUrl}}/user/settings/security/two_factor/regenerate_scratch" method="post" enctype="multipart/form-data">
 | |
| 		{{.CsrfTokenHtml}}
 | |
| 		<p>{{.locale.Tr "settings.regenerate_scratch_token_desc"}}</p>
 | |
| 		<button class="ui primary button">{{$.locale.Tr "settings.twofa_scratch_token_regenerate"}}</button>
 | |
| 	</form>
 | |
| 	<form class="ui form" action="{{AppSubUrl}}/user/settings/security/two_factor/disable" method="post" enctype="multipart/form-data" id="disable-form">
 | |
| 		{{.CsrfTokenHtml}}
 | |
| 		<p>{{.locale.Tr "settings.twofa_disable_note"}}</p>
 | |
| 		<button class="ui red button delete-button" data-modal-id="disable-twofa" data-type="form" data-form="#disable-form">{{$.locale.Tr "settings.twofa_disable"}}</button>
 | |
| 	</form>
 | |
| 	{{else}}
 | |
| 	<p>{{.locale.Tr "settings.twofa_not_enrolled"}}</p>
 | |
| 	<div class="inline field">
 | |
| 		<a class="ui green button" href="{{AppSubUrl}}/user/settings/security/two_factor/enroll">{{$.locale.Tr "settings.twofa_enroll"}}</a>
 | |
| 	</div>
 | |
| 	{{end}}
 | |
| 
 | |
| 	<div class="ui g-modal-confirm delete modal" id="disable-twofa">
 | |
| 		<div class="header">
 | |
| 			{{svg "octicon-trash"}}
 | |
| 			{{.locale.Tr "settings.twofa_disable"}}
 | |
| 		</div>
 | |
| 		<div class="content">
 | |
| 			<p>{{.locale.Tr "settings.twofa_disable_desc"}}</p>
 | |
| 		</div>
 | |
| 		{{template "base/modal_actions_confirm" .}}
 | |
| 	</div>
 | |
| </div>
 |