python-gallery/gallery/templates/settings/account.html
Michał e784ca3011 LocalHost by default in Debug mode
Image resolutions are now requested as width x height
Readded logout button to the settings page
2023-03-20 17:04:05 +00:00

7 lines
237 B
HTML

{% extends 'settings/settings_layout.html' %}
{% block settings_account %}settings-nav__item-selected{% endblock %}
{% block settings_content %}
<h2>Account</h2>
<a href="{{ url_for( 'auth.logout' ) }}">Logout</a>
{% endblock %}