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.
Wie gut das es Wikipedia gibt. :lol:Eddicts schrieb:Ich kapier hier nichts mehr PHP....hab schonmal gehört aber weis net was dat is!
<head>
<script type="text/javascript">
function Geheim () {
var Passwort = "hallo";
var Eingabe = window.prompt("Bitte geben Sie das Passwort ein", "");
if (Eingabe != Passwort) {
alert("Falsches Passwort!");
} else {
location.href = "geheim.htm";
}
}
</script>
</head>
<body onload="Geheim()">
<h1>Hier kommen Sie nur mit Passwort rein ;-)</h1>
<html>
</head>
</head>
<body>
<center>
<font color="red" size="5">[b]<u>Bitte hier einloggen</font>[/b]</u>
</center>
<form action="log.php" method="post">
<div style="position:absolute; top:150px; left:397px; width:328px; height:191px">
<table border="2">
<tr>
<td>Benutzername:</td>
<td><input type="text" size="10" name="user"></td>
</tr>
<tr>
<td>Passwort:</td>
<td><input type="text" size="10" name="passwort"></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Log in">
<input type="reset" value="alles löschen">
</td>
</tr>
</table>
</div>
</center>
</form>
</html>
<?php
if ($_POST ['user'] == "beispiel" && $_POST ['passwort'] == "pass")
{
echo "Herzlich Willkommen im Admin-Bereich";
}
elseif ($_POST ['user'] == "")
{
echo "Bitte gib einen Benutzernamen an...";
}
elseif ($_POST ['passwort'] == "")
{
echo "Ein Passwort bräuchte ich auch noch...";
}
else
{
echo "Benutzerangaben sind falsch";
}
?>