You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
46 lines
1.5 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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="../../CSS/Login.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
|
<script defer src="../../JS/LogIn.js"></script>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
<div class="login-box" id="form">
|
|
<h2>Sign in</h2>
|
|
|
|
<form>
|
|
<div class="user-box">
|
|
<input type="text" id="username" name="" required="">
|
|
<label>Username</label>
|
|
</div>
|
|
<div class="user-box">
|
|
<input type="password" id="password" name="" required="">
|
|
<label>Password</label>
|
|
</div>
|
|
<div>
|
|
<button class="left" type="submit">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
Login
|
|
</button>
|
|
<a href="#" class="right">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
Sign up
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |