Mike: Passwort in externer Datei

Beitrag lesen

Moin nochmal,

ich kann das gar nicht mit ansehen. Nimm das hier und passe es an:
Allerdings fehlt hier das Style Sheet.
<?
@session_start();

$falt=0;
$Das_Passwort='Hexe';

$online = $_SESSION['Online'];

if ( isset ($_POST['Password']) )
   {
     $Check_PW=$_POST['Password'];

if ( $Das_Passwort != $Check_PW )
 {
   $falt=1;
 }
     else
 {
   $online='YEP';
          $_SESSION['Online']="YEP";
 }
   }

echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>

<title>Admin Bereich</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>

<body>

echo '

<p id="TextNormal"><span>Admin Bereich</span></p>';

if ( $online != 'YEP' )
   {
 echo '
 <br><br><br>
 <p id="TextNormal"><span>Bitte das Passwort eingeben:</span></p>

<form name="login_form" action="admin.php" method="POST" target="_self">
 <input maxlength="40" type="password" name="Password">
 <br><br>
 <input type="submit" name="button" value="Senden">
 </form>';

if ( $falt == 1 )
    {
  echo '
  <p id="TextNormal" style="COLOR:#FF0000;"><span>
  Ung&uuml;ltiges Passwort!
  </span></p>';
    }
   }
else
   {

echo '
        HIER DEINE ADMINPAGE';
   }

echo '

</body>
</html>';
?>

Gruß
Mike

--
Murphy: "Wenn etwas schiefgehen kann, dann wird es auch schiefgehen."