2023-01-10 12:39:29 +00:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
|
|
|
|
{% block header %}
|
2023-01-25 15:13:56 +00:00
|
|
|
<div class="background-decoration">
|
|
|
|
<img src="{{ url_for('static', filename='images/background.svg') }}" onload="imgFade(this)" style="opacity:0;"/>
|
|
|
|
<span></span>
|
|
|
|
</div>
|
2023-01-10 12:39:29 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2023-01-25 15:13:56 +00:00
|
|
|
{% block nav_profile %}navigation-item__selected{% endblock %}
|
|
|
|
|
2023-01-10 12:39:29 +00:00
|
|
|
{% block content %}
|
2023-01-25 15:13:56 +00:00
|
|
|
<h1>User</h1>
|
|
|
|
<p>{{user_id}}</p>
|
|
|
|
<ul>
|
|
|
|
{% if g.user %}
|
|
|
|
<li><span>{{ g.user['username'] }}</span>
|
|
|
|
<li><a href="{{ url_for('auth.logout') }}">Log Out</a>
|
|
|
|
{% else %}
|
|
|
|
<li><a href="{{ url_for('auth.register') }}">Register</a>
|
|
|
|
<li><a href="{{ url_for('auth.login') }}">Log In</a>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
2023-01-10 12:39:29 +00:00
|
|
|
{% endblock %}
|
|
|
|
|