aktuelle.kurse/oldies/m133/4_Modulinhalte_und_Uebungen/02-Anmeldung-Architektur/01 Presentation Layer/anmeldung.html

24 lines
595 B
HTML
Raw Normal View History

2022-02-23 22:44:33 +01:00
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Login Form</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<span href="#" class="button" id="toggle-login">Log in</span>
<div id="login">
<div id="triangle"></div>
<h1>Log in</h1>
<form action="./control/anmeldung.php">
<input type="email" name="benutzer" placeholder="Email" />
<input type="password" name="password" placeholder="Password" />
<input type="submit" value="Log in" />
</form>
</div>
<script src="js/index.js"></script>
</body>
</html>