2022-11-04 20:35:28 +01:00
|
|
|
{% extends "baselayout.html" %}
|
2022-03-16 12:11:30 +01:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}
|
2023-02-17 22:01:09 +01:00
|
|
|
{% translate "Drinks - Logged Out" %}
|
2022-03-16 12:11:30 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block headAdditional %}
|
2023-02-17 22:01:09 +01:00
|
|
|
<link rel="stylesheet" href="/static/css/login.css">
|
2022-03-16 12:11:30 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-02-17 22:01:09 +01:00
|
|
|
<div class="flex flex-center flex-column gap-1rem">
|
|
|
|
{% translate "Logged out! You will be redirected shortly." %}
|
|
|
|
<a href="/">{% translate "Click here if automatic redirection does not work." %}</a>
|
|
|
|
</div>
|
|
|
|
<script src="/static/js/logged_out.js"></script>
|
|
|
|
{% endblock %}
|