PHP-Code:
<?php
if ($_SESSION['login'] != 'true') {
menuehead("Login");
?>
<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0">
<form action="" method="post">

    <input type="Text" name="nickname" value="<?=$_POST['nickname'];?>" class="login"><br>
    <input type="Password" name="passwort" value="" class="login"><br>
    <input type="hidden" name="autologin" value="true">
    <button type="submit" name="checkid" id="go" value="Login">Login</button><br>
    <a href="?content=/intern/anmelden">Registrieren</a><br>
    <a href="?content=/intern/daten">Passwort anfordern!</a><br>
</form>
</table>
<?php
menuefoot
();
}