aboutsummaryrefslogtreecommitdiff
path: root/app/templates/dashboard.html
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-04 00:06:46 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-04 00:06:46 +0530
commit63ed2bb6cf3cccf341b3afe1ffc6165b9b95ac88 (patch)
treede3f86827c36691cba2f7cf06db2a7406268f392 /app/templates/dashboard.html
parenta3b38a5c327ba45515c75efccbd18e813c27aad0 (diff)
added dashboard
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