Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Login</title>
</head>
<body>
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="POST">
Passwort: <input type="text" name="passwort">
<input type="submit" name="submit">
</form>
<?php
$passwort = $_POST["passwort"];
$submit = $_POST["submit"];
if($submit)
{
if(!empty($passwort))
{
if($passwort == "passwort")
{
session_start();
$_SESSION["login"];
header('Location: http://dein-server.de/geschuetzter_bereich.php');
}
else
{
echo "
";
echo "Das Passwort ist falsch.";
}
}
else
{
echo "
";
echo "Sie müssen das Passwort angeben.";
}
}
?>
</body>
</html>
<?php
session_start();
if(isset($_SESSION["login"]))
{
include("geschuetzter_bereich.html");
}
else
{
echo "Sie sind nicht eingeloggt.";
}
?>