19 lines
No EOL
515 B
HTML
19 lines
No EOL
515 B
HTML
{% extends "baselayout.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% translate "Drinks - Logged Out" %}
|
|
{% endblock %}
|
|
|
|
{% block headAdditional %}
|
|
<link rel="stylesheet" href="/static/css/login.css">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<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 %} |