adds template structure

This commit is contained in:
2020-04-10 09:53:25 +00:00
parent bcb3b1bbac
commit 53a1f201f8
5 changed files with 150 additions and 15 deletions

8
template/account.html Normal file
View File

@ -0,0 +1,8 @@
{% extends "sidebar.html" %}
{% block body%}
<p>Hello, {{ username }}! You're logged in! Email: {{email}}</p>
<div><p>Google Profile Picture:</p>
<img src={{ profile_img }} alt="Google profile pic"></img></div>
<a class="button" href="/logout">Logout</a>
<a class="button" href="/test">test API</a>
{% endblock %}