doneth.at/app/templates/index.html

9 lines
252 B
HTML

{% extends "_skel.html" %}
{% block content %}
<div class="card max-w-lg mx-auto">
{% if current_user.is_authenticated %}
Hi {{ current_user.username }}! <a href="{{ url_for('auth.logout') }}">Log out.</a>
{% endif %}
</div>
{% endblock %}