diff --git a/templates/common/base.html b/templates/common/base.html
index b10e50d..dcb472e 100644
--- a/templates/common/base.html
+++ b/templates/common/base.html
@@ -155,6 +155,21 @@
+
+ {% with messages = get_flashed_messages(with_categories=true) %}
+ {% if messages %}
+
+ {% for category, message in messages %}
+
+
+ {{ message }}
+
+
+ {% endfor %}
+
+ {% endif %}
+ {% endwith %}
+
{% block content %}{% endblock %}