mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-04 05:46:14 +00:00
19 lines
473 B
HTML
19 lines
473 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block nav_profile %}navigation-item__selected{% endblock %}
|
|
{% block content %}
|
|
<div class="banner">
|
|
<img src="{{ url_for('static', filename='images/bg.svg') }}" onload="imgFade(this)" style="opacity:0;"/>
|
|
<span></span>
|
|
|
|
<div class="banner-content">
|
|
<h1>Profile</h1>
|
|
<p>Hello {{ g.user['username'] }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<h1>User</h1>
|
|
<p>{{user_id}}</p>
|
|
{% endblock %}
|
|
|