vanth/templates/index.html

8 lines
195 B
HTML

{% extends 'layout.html' %}
{% block body %}
<h1>Hello {{ current_user.name }} from Vanth</h1>
<form action="/logout/" method="POST">
<input type="submit">Log out</input>
</form>
{% endblock %}