Files
php7-mysql-data/Kapitel_5/Lektion_3/login/login.php
2016-08-21 00:15:10 +02:00

23 lines
514 B
PHP
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
</head>
<body>
<?php if (false): ?>
<p>Die eingegebenen Zugangsdaten sind nicht korrekt.</p>
<?php endif; ?>
<form action="" method="post">
<label for="benutzername">Benutzername</label>
<input id="benutzername" name="benutzername" type="text"/><br>
<label for="passwort">Passwort</label>
<input id="passwort" name="passwort" type="password"/><br>
<input type="submit"/>
</form>
</body>
</html>