feat: web app compagnon sur sliding_api - chat Narrator, plan, galerie, revision (C9)

This commit is contained in:
2026-07-12 20:41:18 +02:00
parent 549c322f2e
commit 42b0bf0713
9 changed files with 599 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{% extends "base.html" %}{% block title %}Connexion{% endblock %}
{% block content %}
<div class="card login">
<h1>Sliding Automation</h1>
<p class="hint">Mot de sécurité (le même que le connecteur MCP).</p>
{% if error %}<p class="err">{{ error }}</p>{% endif %}
<form method="POST" action="/login">
<input type="password" name="word" placeholder="Mot de sécurité" autofocus>
<button type="submit">Entrer</button>
</form>
</div>
{% endblock %}