Von allen Geräten abmelden hinzugefügt

This commit is contained in:
Borgal
2025-08-14 21:39:43 +02:00
parent be9ce61d2e
commit 8b1d9802d5

View File

@@ -83,8 +83,18 @@ require_once 'inc/header.php'; ?>
<label for="role" class="form-label fw-bold">Rolle</label>
<input type="text" class="form-control" id="role" name="role" value="<?php echo htmlspecialchars($current_role); ?>" disabled readonly>
</div>
<button type="submit" class="btn btn-sm btn-outline-primary">Speichern</button>
<a href="index.php" class="btn btn-sm btn-outline-secondary">Abbrechen</a>
<div class="d-flex justify-content-between align-items-center mt-3">
<div>
<button type="submit" class="btn btn-sm btn-outline-primary">Speichern</button>
<a href="index.php" class="btn btn-sm btn-outline-secondary">Abbrechen</a>
</div>
<div>
<form action="logout_all_devices.php" method="post" onsubmit="return confirm('Möchtest du dich wirklich auf allen Geräten abmelden?');">
<button type="submit" class="btn btn-sm btn-outline-danger">Auf allen Geräten abmelden</button>
</form>
</div>
</div>
</form>
</div>
</div>