mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-30 20:55:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			329 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			329 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "account/base.html" %}
 | |
| {% load i18n crispy_forms_tags %}
 | |
| 
 | |
| {% block content %}
 | |
| <h1>{% trans "Two-Factor Authentication" %}</h1>
 | |
| 
 | |
| <form method="post" class="login">
 | |
|   {% csrf_token %}
 | |
|   {{ form|crispy }}
 | |
| 
 | |
|   <button type="submit" class="btn btn-primary">
 | |
|     {% trans 'Authenticate' %}
 | |
|   </button>
 | |
| </form>
 | |
| {% endblock %}
 |