mirror of
				https://github.com/TrentSPalmer/todo_app_flask.git
				synced 2025-10-31 06:31:42 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			400 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			400 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| .formContainer {
 | |
|   align-items: center;
 | |
|   margin-top: 100px;
 | |
| }
 | |
| 
 | |
| #submitContainer {
 | |
|   margin-top: 100px;
 | |
| }
 | |
| </style>
 | |
| 
 | |
| {% extends "base.html" %}
 | |
| 
 | |
| {% block content %}
 | |
|   <div class='formContainer'>
 | |
|     
 | |
|     <form action="" method="post" novalidate>
 | |
|       <h2>Disable 2FA?</h2>
 | |
|       {{ form.hidden_tag() }}
 | |
|       <p id="submitContainer">{{ form.submit() }}</p>
 | |
|     </form>
 | |
|   </div>
 | |
| {% endblock %}
 |