This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
uwu-me/uwume/templates/home/index.html
2020-03-07 00:40:55 -06:00

23 lines
578 B
HTML

{% extends 'index.html' %} {% block header %}
<h1 class="blue-grey-text text-lighten-5 center">
UwU Me!
</h1>
<h5 class="grey-text text-lighten-1 center">
Hello, {{ current_user.id }}
</h5>
{% endblock %} {% block content %}
<div class="card-panel grey darken-3">
{% for item in content_text %}
<p class="blue-grey-text text-lighten-5">
{{ item }}
</p>
{% endfor %}
</div>
<div class="card-panel grey darken-3">
<div class="center">
<a class="waves-effect waves-light btn blue darken-2" href="/logout">
Logout
</a>
</div>
</div>
{% endblock %}