diff --git a/issue/templates/403.html b/issue/templates/403.html
new file mode 100644
index 0000000..92266d9
--- /dev/null
+++ b/issue/templates/403.html
@@ -0,0 +1,19 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
+
+
+
+ Permission denied
+
+
+
+
+ Sorry, you are not allowed to access this page.
+
+
+
+
+{% endblock %}
diff --git a/issue/templates/404.html b/issue/templates/404.html
new file mode 100644
index 0000000..19fb73c
--- /dev/null
+++ b/issue/templates/404.html
@@ -0,0 +1,19 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
+
+
+
+ Page not found
+
+
+
+
+ This is not the web page you are looking for.
+
+
+
+
+{% endblock %}
diff --git a/issue/templates/500.html b/issue/templates/500.html
new file mode 100644
index 0000000..6a6c13a
--- /dev/null
+++ b/issue/templates/500.html
@@ -0,0 +1,19 @@
+{% extends 'base.html' %}
+
+{% block content %}
+
+
+
+
+
+ Server error
+
+
+
+
+ Sorry, an error occured. Please try again in few minutes.
+
+
+
+
+{% endblock %}