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