diff --git a/the_works/templates/_messages.html b/the_works/templates/_messages.html
new file mode 100644
index 0000000..dae3300
--- /dev/null
+++ b/the_works/templates/_messages.html
@@ -0,0 +1,11 @@
+
+{% with messages = get_flashed_messages(with_categories=true) %}
+ {% if messages %}
+
+ {% for category, message in messages %}
+ - {{ message }}
+ {% endfor %}
+
+ {% endif %}
+{% endwith %}
+
\ No newline at end of file