33 lines
1.1 KiB
Twig
33 lines
1.1 KiB
Twig
{% extends 'admin/base.html.twig' %}
|
|
|
|
{% block title %}Admin Dashboard{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1 class="h4 mb-3">Dashboard</h1>
|
|
|
|
<div class="card bg-black text-info border-secondary">
|
|
<div class="card-body">
|
|
<div class="mb-2">
|
|
<strong>User:</strong> {{ app.user.userIdentifier }}
|
|
</div>
|
|
<div class="mb-2">
|
|
<strong>Rollen:</strong> {{ app.user.roles|join(', ') }}
|
|
</div>
|
|
|
|
<hr class="border-secondary">
|
|
|
|
<form method="post" action="/admin/documents/reset" class="text-danger" onsubmit="return resetSystem()">
|
|
<p class="fw-bold">Reset des Systems</p>
|
|
<p>Unwiderruflicher Reset des gesamten Systems</p>
|
|
<button type="submit" class="btn btn-outline-danger">Reset System</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function resetSystem() {
|
|
return confirm('Sind Sie sicher, dass Sie das gesamte System zurücksetzen möchten?');
|
|
}
|
|
</script>
|
|
{% endblock %}
|