You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
465 B

@page
@model LogoutModel
@{
ViewData["Title"] = "Abmelden";
}
<header>
<div class="card shadow-lg p-3 mb-5 bg-white rounded">
<div class="card-header bg-primary"><h4>@ViewData["Title"]</h4></div>
<div class="card-body">Sie haben sich erfolgreich abgemeldet</div>
<div class="card-footer">
<button class="btn btn-primary" onclick="window.location.href='/'">Startseite </button>
</div>
</div>
</header>