mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
24 lines
593 B
HTML
24 lines
593 B
HTML
|
<!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>
|