Logout ist nun von überall ohne Session Cookies möglich

This commit is contained in:
ja
2021-09-16 16:17:08 +02:00
parent 1deb7365f5
commit 506ed3197e
6 changed files with 30 additions and 31 deletions

View File

@@ -19,13 +19,9 @@
</head>
<body>
<form id="form1" runat="server">
<div>
<%If Me.Page.User.Identity.IsAuthenticated = False Then %>
<div>
<h1>Du wurdest erfolgreich ausgeloggt.</h1>
<button type="button" id="btn_backtostart" class="btn btn-primary">Zurück zur Startseite!</button>
<%Else %>
<h1>Du bist noch eingeloggt <%=Me.User.Identity.Name %>.</h1>
<%End If %>
<button type="button" id="btn_backtostart" class="btn btn-primary">Zurück zur Startseite!</button>
</div>
</form>