drinks-manager/app/templates/registration/logged_out.html

19 lines
515 B
HTML
Raw Permalink Normal View History

{% extends "baselayout.html" %}
{% load i18n %}
{% block title %}
2023-02-17 22:01:09 +01:00
{% translate "Drinks - Logged Out" %}
{% endblock %}
{% block headAdditional %}
2023-02-17 22:01:09 +01:00
<link rel="stylesheet" href="/static/css/login.css">
{% 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 %}