2023-05-29 21:25:50 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2023-07-09 04:26:28 +00:00
|
|
|
{% block title %}Logout of What 2 Watch, Bish{% endblock %}
|
2023-05-29 21:25:50 +00:00
|
|
|
|
2023-06-13 21:33:31 +00:00
|
|
|
{% block header %}{% endblock %}
|
|
|
|
|
2023-05-29 21:25:50 +00:00
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<form action="/logout" enctype="application/x-www-form-urlencoded" method="post">
|
|
|
|
<input type="submit" value="Sign out">
|
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{% endblock %}
|