diff --git a/mfa/templates/TOTP/recheck.html b/mfa/templates/TOTP/recheck.html index 5fd320f..957c132 100644 --- a/mfa/templates/TOTP/recheck.html +++ b/mfa/templates/TOTP/recheck.html @@ -1,77 +1,64 @@ - -
-
+{% extends "mfa_auth_base.html" %} +{% load static %} -
-
-
- One Time Password -
-
- -
+{% block content %} - {% csrf_token %} - {% if invalid %} -
- Sorry, The provided token is not valid. -
- {% endif %} - {% if quota %} -
- {{ quota }} -
- {% endif %} -
-
-
-

Enter the 6-digits on your authenticator

-
-
+
+ +
+
+
One Time Password
+
+
+ + {% csrf_token %} + {% if invalid %} +
+ Sorry, The provided token is not valid. +
+ {% endif %} + {% if quota %} +
+ {{ quota }} +
+ {% endif %} +
-
-
-
-
- - - - +
+

Enter the 6-digits on your authenticator

+
-
-
-
+
+
+ + + + +
+
+ +
+ +
-
-
-
- -
-
-
- {% if request.session.mfa_methods|length > 1 %} - Select Another Method - {% endif %} -
-
-
-
-
-
+ + + + + +
+ {% if request.session.mfa_methods|length > 1 %} + Select Another Method + {% endif %} +
+ +
+
-{% include "modal.html" %} \ No newline at end of file + +{% include "modal.html" %} +{% endblock %}