what2watch/templates/logout_page.html

16 lines
302 B
HTML
Raw Permalink Normal View History

{% extends "base.html" %}
2024-04-12 05:15:34 +00:00
{% block title %}Logout of What 2 Watch, Buddy{% 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 %}