diff --git a/InvenTree/templates/registration/logged_out.html b/InvenTree/templates/registration/logged_out.html
new file mode 100644
index 0000000000..8b018fa7b4
--- /dev/null
+++ b/InvenTree/templates/registration/logged_out.html
@@ -0,0 +1,10 @@
+{% extends "registration/logged_out.html" %}
+{% load i18n %}
+
+{% block content %}
+
+<p>{% translate "You were logged out successfully." %}</p>
+
+<p><a href="{% url 'admin:index' %}">{% translate 'Log in again' %}</a></p>
+
+{% endblock %}