aktuelle.kurse/old_m133/5_Vorlagen-und-Loesungen/Login_A/formular.php

22 lines
400 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">
2022-03-17 11:19:26 +01:00
Name:<br> <input type="text" name="name" size="20">
<br>
Kennwort:<br> <input type="password" name="pwd" size="20">
<br>
2022-02-24 09:37:43 +01:00
<input type="submit" value="Login">
</form>
</body>
</html>