Phase1 Bearbeitung

This commit is contained in:
2026-06-15 18:36:57 +02:00
parent e4fa714419
commit 06645f1e9c
29 changed files with 3367 additions and 300 deletions
+32 -15
View File
@@ -1,22 +1,39 @@
<?php require __DIR__ . '/../partials/layout-top.php'; ?>
<?php
$resetRequestUrl = '/password/forgot?scope=platform';
require __DIR__ . '/../partials/layout-top.php';
?>
<section class="page-head">
<span class="eyebrow">Plattform</span>
<span class="eyebrow">Plattformzugang</span>
<h1>Admin-Login</h1>
<p>Fuer Betrieb, Mandantenuebersicht, Support und spaetere Vermarktungssteuerung.</p>
<p>Fuer Pilotbetreuung, Mandantenuebersicht und Betriebsaufgaben. Mitglieder nutzen dafuer nicht diese Seite, sondern den jeweiligen Standort-Login.</p>
</section>
<form class="card form-card slim" method="post" action="/admin/login">
<?= csrf_field($csrf) ?>
<label>
<span>E-Mail</span>
<input type="email" name="email" value="<?= e((string) old('email')) ?>" required>
</label>
<label>
<span>Passwort</span>
<input type="password" name="password" required>
</label>
<button class="button button-primary" type="submit">Anmelden</button>
</form>
<div class="two-column">
<form class="card form-card" method="post" action="/admin/login">
<?= csrf_field($csrf) ?>
<label>
<span>E-Mail</span>
<input type="email" name="email" value="<?= e((string) old('email')) ?>" required>
</label>
<label>
<span>Passwort</span>
<input type="password" name="password" required>
</label>
<button class="button button-primary" type="submit">Plattform anmelden</button>
<p class="muted">Passwort vergessen? <a class="text-link" href="<?= e($resetRequestUrl) ?>">Reset anstossen</a></p>
</form>
<aside class="card" id="reset-help">
<span class="eyebrow">Passwort vergessen</span>
<h2>Reset im Pilotbetrieb</h2>
<p class="muted">Der Passwort-Reset ist fuer den Pilot bereits vorgesehen. Bis die automatische Zustellung freigeschaltet ist, sollte das Plattformteam die Anfrage pruefen und den Reset manuell begleiten.</p>
<ul class="feature-list">
<li>Nur fuer Plattform-Admins und Pilotbetreuung</li>
<li>Anfrage immer ueber die bekannte Login-E-Mail pruefen</li>
<li>Mandanten- und Member-Logins laufen getrennt vom Plattformzugang</li>
</ul>
</aside>
</div>
<?php require __DIR__ . '/../partials/layout-bottom.php'; ?>