diff --git a/SocialHelper/homepage/templates/alerts.html b/SocialHelper/homepage/templates/alerts.html new file mode 100644 index 0000000..372fba4 --- /dev/null +++ b/SocialHelper/homepage/templates/alerts.html @@ -0,0 +1,18 @@ +{% if messages %} +{% for message in messages %} + +
+ +
+{% endfor %} +{% endif %} diff --git a/SocialHelper/homepage/templates/base.html b/SocialHelper/homepage/templates/base.html index fd31dca..e5a77fc 100644 --- a/SocialHelper/homepage/templates/base.html +++ b/SocialHelper/homepage/templates/base.html @@ -24,6 +24,7 @@ {% include 'navbar.html' %} + {% include 'alerts.html' %} {% block content %} {% endblock %}