diff --git a/biscuit/core/templates/two_factor/login.html b/biscuit/core/templates/two_factor/login.html
deleted file mode 100644
index cc46fbc144febe55a1b25145acd30d43fa4b3589..0000000000000000000000000000000000000000
--- a/biscuit/core/templates/two_factor/login.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{# -*- engine:django -*- #}
-{% extends "core/base.html" %}
-{% load bootstrap4 i18n %}
-
-{% block content %}
- {% if next %}
-  {% if user.is_authenticated %}
-   <p>
-    Your account doesn't have access to this page. To proceed,
-    please login with an account that has access.
-   </p>
-  {% else %}
-   <p>Please login to see this page.</p>
-  {% endif %}
- {% endif %}
-
- <form method="post" action="{% url 'two_factor:login' %}">
-  {% csrf_token %}
-  {% bootstrap_form form %}
-  <button type="submit" class="btn btn-dark">
-    {% blocktrans %}Login{% endblocktrans %}
-  </button>
- </form>
-{% endblock %}