aboutsummaryrefslogtreecommitdiff
path: root/app/templates/dashboard.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/dashboard.html')
-rw-r--r--app/templates/dashboard.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/templates/dashboard.html b/app/templates/dashboard.html
new file mode 100644
index 0000000..66e8cd6
--- /dev/null
+++ b/app/templates/dashboard.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block title %}Home{% endblock %}
+{% block head %}
+ {{ super() }}
+{% endblock %}
+{% block content %}
+<div class="container">
+ <h1>Hi {{user.first_name}}</h1>
+ <p>
+ Welcome to your dashboard
+ </p>
+</div>
+{% endblock %} \ No newline at end of file