diff --git a/.gitignore b/.gitignore
index 199290d..698e8b3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,8 @@ __pycache__/
# C extensions
*.so
+venv/
+
# Distribution / packaging
.Python
build/
diff --git a/allauth_ui/templates/allauth/layouts/base.html b/allauth_ui/templates/allauth/layouts/base.html
index 63e04a8..7ee2869 100644
--- a/allauth_ui/templates/allauth/layouts/base.html
+++ b/allauth_ui/templates/allauth/layouts/base.html
@@ -4,64 +4,62 @@
{% load allauth_ui %}
-
-
- {% if user.is_authenticated %}
- {% url 'account_email' as email_url %}
- {% if email_url %}
-
{% trans "Change Email" %}
- {% endif %}
- {% url 'account_change_password' as change_password_url %}
- {% if change_password_url %}
-
{% trans "Change Password" %}
- {% endif %}
- {% url 'mfa_index' as mfa_url %}
- {% if mfa_url %}
-
{% trans "Two-Factor Authentication" %}
- {% endif %}
- {% url 'usersessions_list' as usersessions_list_url %}
- {% if usersessions_list_url %}
-
{% trans "Sessions" %}
- {% endif %}
- {% url 'account_logout' as logout_url %}
- {% if logout_url %}
-
{% trans "Sign Out" %}
- {% endif %}
- {% else %}
- {% url 'account_login' as login_url %}
- {% if login_url %}
-
{% trans "Sign In" %}
- {% endif %}
- {% url 'account_signup' as signup_url %}
- {% if signup_url %}
-
{% trans "Sign Up" %}
- {% endif %}
- {% endif %}
-
- {% endblock body %}
- {% block extra_body %}
- {% endblock extra_body %}
-
-
+
+
+
+ {% if user.is_authenticated %}
+ {% url 'account_email' as email_url %}
+ {% if email_url %}
+
{% trans "Change Email" %}
+ {% endif %}
+ {% url 'account_change_password' as change_password_url %}
+ {% if change_password_url %}
+
{% trans "Change Password" %}
+ {% endif %}
+ {% url 'mfa_index' as mfa_url %}
+ {% if mfa_url %}
+
{% trans "Two-Factor Authentication" %}
+ {% endif %}
+ {% url 'usersessions_list' as usersessions_list_url %}
+ {% if usersessions_list_url %}
+
{% trans "Sessions" %}
+ {% endif %}
+ {% url 'account_logout' as logout_url %}
+ {% if logout_url %}
+
{% trans "Sign Out" %}
+ {% endif %}
+ {% else %}
+ {% url 'account_login' as login_url %}
+ {% if login_url %}
+
{% trans "Sign In" %}
+ {% endif %}
+ {% url 'account_signup' as signup_url %}
+ {% if signup_url %}
+
{% trans "Sign Up" %}
+ {% endif %}
+ {% endif %}
+
+ {% endblock body %}
+ {% block extra_body %}
+ {% endblock extra_body %}
+
+
+