15 lines
302 B
HTML
15 lines
302 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Logout of What 2 Watch, Buddy{% 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 %}
|