diff --git a/umap/static/umap/content.css b/umap/static/umap/content.css
index 931321b4..5e468f8c 100644
--- a/umap/static/umap/content.css
+++ b/umap/static/umap/content.css
@@ -259,6 +259,27 @@ ul.umap-autocomplete {
cursor: pointer;
}
+/* **************************** */
+/* Messages */
+/* **************************** */
+.messages li {
+ border-radius: 1px;
+ color: white;
+ margin-bottom: 20px;
+ padding: 20px;
+ text-align: center;
+ width: 100%;
+ background-color: #444;
+ font-weight: bold;
+}
+
+.messages .success {
+ background-color: #16a085;
+}
+
+.messages .error {
+ background-color: #c60f13;
+}
/* **************************** */
diff --git a/umap/templates/umap/content.html b/umap/templates/umap/content.html
index dbd38ce5..29f9bf01 100644
--- a/umap/templates/umap/content.html
+++ b/umap/templates/umap/content.html
@@ -15,6 +15,7 @@