FVS-Social-Projekt-Neu/FVS-Social/login/login-page.html
erik c3b42cccac Version 0.9
-Nachrichten Senden
-Design verbessert
-Kleine Verbesserungen

Signed-off-by: erik <micheler@steinbeis.schule>
2025-03-10 10:48:39 +01:00

27 lines
No EOL
966 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<link rel="stylesheet" href="login-page-style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FVS-Social</title>
</head>
<body>
<div class="container" >
<div class="col-4 login-body" >
<img class="login-logo" src="../img/Logomark.png" alt="Logo">
<h2>Log In</h2>
<form class="login-form" action="login.php" method="POST">
<input type="email" placeholder="E-Mail oder Benutzername" name="email">
<input type="password" placeholder="Passwort" name="password">
<a href="">Passwort vergessen?</a>
<button class="login-button" name="login" type="submit">Log In</button>
</form>
<!--<p>Noch kein Account?<a href="../signup/signup-page.html">Jetzt Regestrieren!</a></p>-->
</div>
</div>
</body>
</html>