14 lines
437 B
PHTML
14 lines
437 B
PHTML
<div class="inhalt">
|
|
<div class="login-success">
|
|
<h2>Logout erfolgreich!</h2>
|
|
<p>Sie werden in wenigen Sekunden zum Login weitergeleitet...</p>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
setTimeout(function() {
|
|
window.location.href = "?controller=Auth&do=showLoginForm";
|
|
}, 2000); // 2 Sekunden warten
|
|
</script>
|
|
<noscript>
|
|
<meta http-equiv="refresh" content="2;url=?controller=Auth&do=showLoginForm">
|
|
</noscript> |