diff --git a/SocialHelper/control/templates/alertscontrol.html b/SocialHelper/control/templates/alertscontrol.html
new file mode 100644
index 0000000..372fba4
--- /dev/null
+++ b/SocialHelper/control/templates/alertscontrol.html
@@ -0,0 +1,18 @@
+{% if messages %}
+{% for message in messages %}
+
+
+
+
+
+ {% if message.level == DEFAULT_MESSAGE_LEVELS.ERROR %}
+ Error:
+ {% else %}
+ {{ message.tags|title }}
+ {% endif %}
+
+ {{ message }}
+
+
+{% endfor %}
+{% endif %}
diff --git a/SocialHelper/control/templates/basecontrol.html b/SocialHelper/control/templates/basecontrol.html
new file mode 100644
index 0000000..7246a75
--- /dev/null
+++ b/SocialHelper/control/templates/basecontrol.html
@@ -0,0 +1,53 @@
+{% load static %}
+
+
+
+
+