diff --git a/templates/_flash.html.twig b/templates/_flash.html.twig
new file mode 100644
index 00000000..583f88e8
--- /dev/null
+++ b/templates/_flash.html.twig
@@ -0,0 +1,31 @@
+{# The container to show the flash messages #}
+
+
+ {% for label, messages in app.flashes() %}
+ {% for message in messages %}
+ {% set flash_title = label|replace({'success': 'flash.success', 'error': 'flash.error'
+ , 'warning': 'flash.warning', 'notice': 'flash.notice', 'info': 'flash.info'}) %}
+ {% set flash_symbol = label|replace({'success': 'fa-check-circle', 'error': 'fa-exclamation-triangle'
+ , 'warning': 'fa-exclamation-circle', 'notice': 'fa-flag', 'info': 'fa-flag'}) %}
+
+ {% set flash_bg = label|replace({'success': 'bg-success text-white',
+ 'error': 'bg-danger text-white', 'warning': 'bg-warning text-white',
+ 'notice': 'bg-info text-white', 'info': 'bg'})%}
+
+
+ {% endfor %}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/templates/_navbar.html.twig b/templates/_navbar.html.twig
new file mode 100644
index 00000000..cac412f5
--- /dev/null
+++ b/templates/_navbar.html.twig
@@ -0,0 +1,92 @@
+