vtt/src/ttfrog/pwic/templates/html/logout.html
evilchili 7aa6f03d5d Import pwic as source, add overrides
This commit imports the latest source of the pwic module directly
and modifies it just enough for it to be an importable module.

Source: https://github.com/gitbra/pwic
2025-09-21 14:56:05 -07:00

22 lines
640 B
HTML

{% extends 'html/main.html' %}
{% block title %}{% trans %}Disconnected from Pwic.wiki{% endtrans %}{% endblock %}
{% block content %}
<header>
<div class="pwic_ph1"><a href="/">{% trans %}You are disconnected{% endtrans %}</a></div>
</header>
<article>
<p class="pwic_information">{{pwic.emojis.globe}} {% trans %}You successfully logged out.{% endtrans %}</p>
<p>{% trans %}You can go back to:{% endtrans %}</p>
<ol>
<li><a href="/">{% trans %}the selection of a new project{% endtrans %}</a></li>
<li><a href="/special/login">{% trans %}the login page{% endtrans %}</a></li>
</ol>
</article>
{% endblock %}