2023-01-10 12:39:29 +00:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
|
2023-03-26 01:04:13 +00:00
|
|
|
{% block nav_profile %}selected{% endblock %}
|
2023-03-08 13:36:35 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="banner">
|
2023-03-26 01:04:13 +00:00
|
|
|
<img src="{{ url_for('static', filename='') }}" onload="imgFade(this)" style="opacity:0;"/>
|
2023-01-25 15:13:56 +00:00
|
|
|
<span></span>
|
2023-01-10 12:39:29 +00:00
|
|
|
|
2023-03-08 13:36:35 +00:00
|
|
|
<div class="banner-content">
|
|
|
|
<h1>Profile</h1>
|
2023-04-03 18:04:49 +00:00
|
|
|
<p>Hello {{ current_user.username }}</p>
|
2023-03-08 13:36:35 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-25 15:13:56 +00:00
|
|
|
|
|
|
|
<h1>User</h1>
|
|
|
|
<p>{{user_id}}</p>
|
2023-01-10 12:39:29 +00:00
|
|
|
{% endblock %}
|
|
|
|
|