diff --git a/run.py b/run.py
index 1e92373..42cd158 100644
--- a/run.py
+++ b/run.py
@@ -12,6 +12,11 @@ def index():
# Return HTML content
return "
This is the default page
"
+@app.route("/dashboard")
+def dashboard():
+ # Return Dashboard.html
+ return render_template("dashboard.html")
+
@app.route("/forms")
def forms():
diff --git a/templates/base_template.html b/templates/base_template.html
index 89afbe5..a3790a7 100644
--- a/templates/base_template.html
+++ b/templates/base_template.html
@@ -9,6 +9,9 @@
{% block content %}
+ {% include "navbar_base.html" %}
+ {% block navbar %}
+ {% endblock %}
{% endblock %}