diff --git a/modules/consent/templates/noconsent.twig b/modules/consent/templates/noconsent.twig
new file mode 100644
index 0000000000000000000000000000000000000000..f9b623aa01a46f3127dd1bb30fafe1efbd201317
--- /dev/null
+++ b/modules/consent/templates/noconsent.twig
@@ -0,0 +1,16 @@
+{% set pagetitle = '{consent:consent:noconsent_title}'|trans %}
+{% extends "base.twig" %}
+{% block content %}
+    <h2>{{ header }}</h2>
+    <p>{{ noconsent_text }}</p>
+
+    {% if resumeFrom %}
+    <p><a href="{{ resumeFrom|escape('url') }}">{{ '{consent:consent:noconsent_return}'|trans }}</a></p>
+    {% endif %}
+
+    {% if aboutService %}
+    <p><a href="{{ aboutService|escape('url') }}">{{ '{consent:consent:noconsent_goto_about}'|trans }}</a></p>
+    {% endif %}
+
+    <p><a href="{{ logoutLink|escape('url') }}">{{ noconsent_abort }}</a></p>
+{% endblock %}