13 lines
		
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
| {# app/templates/auth/disable_2fa.html #}
 | |
| {% extends 'base.html' %}
 | |
| {% import 'bootstrap/wtf.html' as wtf %}
 | |
| 
 | |
| {% block app_content %}
 | |
|     <h1>Disable Two-Factor Authentication</h1>
 | |
|     <p>Please click the button below to disable two-factor authentication on your account.</p>
 | |
|     <div class="row">
 | |
|         <div class="col-md-4">
 | |
|             {{ wtf.quick_form(form) }}
 | |
|         </div>
 | |
|     </div>
 | |
| {% endblock %} |