logged_out.html 328 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends 'base.html' %}

{% block title%}<title>See you!</title>{% endblock %}

{% block content %}
<div class="row">
    <div class="col-md-3 offset-md-3">
      <h2>Logged out</h2>
      <p>You have been successfully logged out.</p>
      <p><a href="{% url 'login' %}">Log in</a> again.</p>
    </div>
</div>
{% endblock %}