forked from WEB-IMB-WS2526/lab-development-imb
23 lines
473 B
HTML
23 lines
473 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Kundenkonto</h1>
|
|
<form action="" method="get">
|
|
<h2>Melden Sie sich bitte an:</h2>
|
|
<label for="email">E-Mail:</label>
|
|
<input type="email" id="email" name="email" required>
|
|
<br><br>
|
|
<label for="password">Passwort:</label>
|
|
<input type="password" id="password" name="pwd" required>
|
|
<br><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</body>
|
|
|
|
</html> |