what2watch/templates/logout_page.html

16 lines
300 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Logout of Witch Watch, Bish{% endblock %}
2023-06-13 21:33:31 +00:00
{% 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 %}