Webshop/public/login/index.html
2024-11-21 09:53:50 +01:00

49 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Styles/login/style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<title>Login</title>
<style>
input::-ms-reveal,
input::-ms-clear {
display: none;
}</style>
</head>
<body>
<div class="wrapper">
<form action="">
<h1>Login</h1>
<div class="input-box">
<label>
<input type="text" placeholder="Username" required>
</label>
<i class='bx bxs-user'></i>
</div>
<div class="input-box">
<input type="password" placeholder="Passwort" required>
<i class='bx bxs-lock-alt'></i>
</div>
<div class="remember-forgot">
<label><input type="checkbox"> Passwort merken </label>
<a href="#">Passwort vergessen?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="register-link">
<p>Noch keinen Account? <a href="#">Registrieren</a></p>
</div>
</form>
</div>
<!-- scripts -->
<script src="login.js"></script>
</body>
</html>