vanth/templates/index.html

8 lines
203 B
HTML
Raw Normal View History

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