42 lines
1.2 KiB
HTML
42 lines
1.2 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>Loging</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<form action="">
|
|
<h1>Login</h1>
|
|
<div class="input-box">
|
|
<input type="text" placeholder="Username" required>
|
|
<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> |