diff --git a/aleksis/core/templates/registration/logged_out.html b/aleksis/core/templates/registration/logged_out.html
deleted file mode 100644
index 6deffc3a079a4774b871e23ae094d431c2b032ee..0000000000000000000000000000000000000000
--- a/aleksis/core/templates/registration/logged_out.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{% include 'partials/header.html' %}
-
-<main>
-  <p class="flow-text">Du bist nun abgemeldet.</p>
-  <a href="{% url 'login' %}">Wieder anmelden?</a>
-</main>
-
-{% include 'partials/footer.html' %}
diff --git a/aleksis/core/templates/registration/login.html b/aleksis/core/templates/registration/login.html
deleted file mode 100644
index e38f93a893ed8c8ad9a1a65db9e6ed3b3666b029..0000000000000000000000000000000000000000
--- a/aleksis/core/templates/registration/login.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{# -*- engine:django -*- #}
-{% extends "core/base.html" %}
-{% load material_form 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 'login' %}">
-    {% csrf_token %}
-    {% form form=form %}{% endform %}
-    <button type="submit" class="btn waves-effect waves-light green">
-      {% blocktrans %}Login{% endblocktrans %}
-    </button>
-  </form>
-{% endblock %}