SOITA/templates/logout.html

12 lines
250 B
HTML
Raw Normal View History

2021-12-09 23:25:35 +01:00
{% extends "authBase.html" %}
2021-12-10 15:39:22 +01:00
{% block title %}Log Out{% endblock %}
2021-12-09 23:25:35 +01:00
{% block content %}
2021-12-10 15:39:22 +01:00
<p>You have been logged out successfully</p>
2022-01-19 20:56:00 +01:00
<div class="linkDefault">
<a href="{% url 'welcome' %}">Continue</a>
</div>
2021-12-09 23:25:35 +01:00
{% endblock %}