diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 00:06:46 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 00:06:46 +0530 |
commit | 63ed2bb6cf3cccf341b3afe1ffc6165b9b95ac88 (patch) | |
tree | de3f86827c36691cba2f7cf06db2a7406268f392 /app/templates/dashboard.html | |
parent | a3b38a5c327ba45515c75efccbd18e813c27aad0 (diff) |
added dashboard
Diffstat (limited to 'app/templates/dashboard.html')
-rw-r--r-- | app/templates/dashboard.html | 13 |
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 |