65 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			65 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | {% extends "mfa/base_entrance.html" %} | ||
|  | {% load i18n %} | ||
|  | {% load allauth %} | ||
|  | {% load allauth static %} | ||
|  | {% block head_title %} | ||
|  |     {% trans "Sign In" %} | ||
|  | {% endblock head_title %} | ||
|  | {% block content %} | ||
|  |     {% element h1 %} | ||
|  |         {% trans "Two-Factor Authentication" %} | ||
|  |     {% endelement %} | ||
|  |     {% element p %} | ||
|  |         {% blocktranslate %}Your account is protected by two-factor authentication. Please enter an authenticator code:{% endblocktranslate %} | ||
|  |     {% endelement %} | ||
|  |     {% url 'mfa_authenticate' as action_url %} | ||
|  |     {% element form form=form method="post" action=action_url %} | ||
|  |         {% slot body %} | ||
|  |             {% csrf_token %} | ||
|  |             {% element fields form=form unlabeled=True %} | ||
|  |             {% endelement %} | ||
|  |         {% endslot %} | ||
|  |         {% slot actions %} | ||
|  |             {% element button type="submit" tags="primary,mfa,login" %} | ||
|  |                 {% trans "Sign In" %} | ||
|  |             {% endelement %} | ||
|  |         {% endslot %} | ||
|  |     {% endelement %} | ||
|  |     {% element hr %} | ||
|  |     {% endelement %} | ||
|  |     {% element h2 %} | ||
|  |         {% translate "Alternative options" %} | ||
|  |     {% endelement %} | ||
|  |     {% element button_group vertical=True %} | ||
|  |         {% if "webauthn" in MFA_SUPPORTED_TYPES %} | ||
|  |             {% element button form="webauthn_form" id="mfa_webauthn_authenticate" type="button" tags="outline,primary" %} | ||
|  |                 {% trans "Use a security key" %} | ||
|  |             {% endelement %} | ||
|  |         {% endif %} | ||
|  |         {% url "account_login" as login_url %} | ||
|  |         {% element button href=login_url tags="outline,primary,mfa,cancel" %} | ||
|  |             {% trans "Cancel" %} | ||
|  |         {% endelement %} | ||
|  |     {% endelement %} | ||
|  |     {% if "webauthn" in MFA_SUPPORTED_TYPES %} | ||
|  |         {% element form id="webauthn_form" form=webauthn_form method="post" action=action_url no_visible_fields=True %} | ||
|  |             {% slot body %} | ||
|  |                 {% csrf_token %} | ||
|  |                 {% element fields form=webauthn_form %} | ||
|  |                 {% endelement %} | ||
|  |             {% endslot %} | ||
|  |         {% endelement %} | ||
|  |         {{ js_data|json_script:"js_data" }} | ||
|  |         {% include "mfa/webauthn/snippets/scripts.html" %} | ||
|  |         <script type="text/javascript"> | ||
|  |         allauth.webauthn.forms.authenticateForm({ | ||
|  |         ids: { | ||
|  |         authenticate: "mfa_webauthn_authenticate", | ||
|  |         credential: "{{ webauthn_form.credential.auto_id }}" | ||
|  |         }, | ||
|  |         data: JSON.parse(document.getElementById('js_data').textContent) | ||
|  |         }) | ||
|  |         </script> | ||
|  |     {% endif %} | ||
|  | {% endblock content %} |