15 lines
262 B
HTML
15 lines
262 B
HTML
{% extends "base.html" %}
|
|
{% block region %}{% endblock %}
|
|
|
|
{% block title %}Signed Out{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="page_head">
|
|
<h2>Signed out</h2>
|
|
</div>
|
|
|
|
<p>
|
|
You have successfully signed out of your account.
|
|
</p>
|
|
{% endblock %}
|