aktuelle.kurse/oldies/m133/5_Vorlagen-und-Loesungen/Login_A/formular.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

22 lines
400 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:<br> <input type="text" name="name" size="20">
<br>
Kennwort:<br> <input type="password" name="pwd" size="20">
<br>
<input type="submit" value="Login">
</form>
</body>
</html>