diff --git a/ticketsystem/templates/ticketsystem/base.html b/ticketsystem/templates/ticketsystem/base.html
new file mode 100644
index 0000000..7549b75
--- /dev/null
+++ b/ticketsystem/templates/ticketsystem/base.html
@@ -0,0 +1,70 @@
+
+
+
+
+ {% block title %}TicketSystem{% endblock %}
+
+
+
+
+
+
+
+ {% if user.is_authenticated %}
+ 👤 {{ user.username }}
+
+ {% endif %}
+
+
+
+
+
+ {% block content %}
+ {% endblock %}
+
+
+
diff --git a/ticketsystem/templates/ticketsystem/detail.html b/ticketsystem/templates/ticketsystem/detail.html
index 63c69ec..57c4f18 100644
--- a/ticketsystem/templates/ticketsystem/detail.html
+++ b/ticketsystem/templates/ticketsystem/detail.html
@@ -1,3 +1,4 @@
+{% extends "ticketsystem/base.html" %}
{% block content %}
{% if messages %}
diff --git a/ticketsystem/templates/ticketsystem/home.html b/ticketsystem/templates/ticketsystem/home.html
index dcefd55..1615a06 100644
--- a/ticketsystem/templates/ticketsystem/home.html
+++ b/ticketsystem/templates/ticketsystem/home.html
@@ -1,3 +1,4 @@
+{% extends "ticketsystem/base.html" %}
{% block content %}