Files
Watcher/watcher-monitoring/Views/Auth/AccessDenied.cshtml
triggermeelmo d8b164e3eb
All checks were successful
Gitea CI/CD / dotnet-build-and-test (push) Successful in 10m5s
Gitea CI/CD / Set Tag Name (push) Successful in 5s
Gitea CI/CD / docker-build-and-push (push) Successful in 11m28s
Gitea CI/CD / Create Tag (push) Successful in 5s
Added Authentication with user-auth and apikey-auth
2026-01-09 10:18:06 +01:00

19 lines
674 B
Plaintext

@{
ViewData["Title"] = "Zugriff verweigert";
}
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card border-danger">
<div class="card-body text-center">
<h1 class="display-1 text-danger">🚫</h1>
<h2 class="card-title">Zugriff verweigert</h2>
<p class="card-text">Sie haben keine Berechtigung, auf diese Seite zuzugreifen.</p>
<a asp-controller="Auth" asp-action="Login" class="btn btn-primary">Zurück zum Login</a>
</div>
</div>
</div>
</div>
</div>