aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/80 Beispiele/login/formular.php

20 lines
386 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php session_start (); ?>
<html>
<head>
<title>Login</title>
</head>
<body>
<?php
if (isset ($_REQUEST["fehler"]))
{
echo "Die Zugangsdaten waren ung<6E>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>