aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/80 Beispiele/login/formular.php
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

20 lines
386 B
PHP

<?php session_start (); ?>
<html>
<head>
<title>Login</title>
</head>
<body>
<?php
if (isset ($_REQUEST["fehler"]))
{
echo "Die Zugangsdaten waren ungültig.";
}
?>
<form action="login.php" method="post">
Name: <input type="text" name="name" size="20"><br>
Kennwort: <input type="password" name="pwd" size="20"><br>
<input type="submit" value="Login">
</form>
</body>
</html>