what2watch/templates/logout_page.html

16 lines
301 B
HTML

{% extends "base.html" %}
{% block title %}Logout of What 2 Watch, Bish{% endblock %}
{% block header %}{% endblock %}
{% block content %}
<p>
<form action="/logout" enctype="application/x-www-form-urlencoded" method="post">
<input type="submit" value="Sign out">
</form>
</p>
{% endblock %}