lab-development-imb/web/04/labor/04_loesungen/login.html

34 lines
911 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Login</title>
</head>
<body>
<h1>Kundenkonto</h1><br>
<h2>Melden Sie sich bitte an</h2><br>
<form action="" method="GET">
<label for="email">E-Mail:</label>
<input type="email" name="email" id="email" required><br>
<label for="password">Passwort:</label>
<input type="password" name="password" id="password" required><br>
<button type="submit">Login</button>
</form>
</body>
</html>
<!--
Aufgabe 8
a)
Ja die Eingabe wurde als Query Parameter übernommen
Problematisch ist das, weil sowohl Passwort als auch Benutzername in der URL sichtbar sind (Klartext)
b)
Nein ich bekomme keine Meldung aber das Formular wird auch nicht abgesendet
c)
Ja, es erscheint die Nachricht "bitte füllen Sie dieses Feld aus"
-->