mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-23 00:24:49 +01:00
Use strict template response handling and sanitized template user context, then add an in-process conversation archive cache with mutation-driven invalidation for chat sidebar renders.
12 lines
310 B
HTML
12 lines
310 B
HTML
{% extends "head_base.html" %}
|
|
|
|
{% block title %}Minne - Auth{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="min-h-[100dvh] flex flex-col items-center justify-center">
|
|
{% block auth_content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="toast-container" class="fixed bottom-4 right-4 z-50 space-y-2"></div>
|
|
{% endblock %}
|