first commit

This commit is contained in:
Meor
2025-09-16 02:18:17 +03:00
commit fac5f36fc3
20 changed files with 650 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="glass-container">
<div class="login-box">
<h2>Login</h2>
<form action="#" method="POST">
<input type="text" id="username" name="username" required placeholder="Username">
<input type="password" id="password" name="password" required placeholder="Password">
<div class="options">
<input type="checkbox" id="remember" name="remember">
<label for="remember"> Remember me</label>
<a href="#">Forgot Password?</a>
</div>
<button type="submit">Login</button>
<p>Don't have an account? <a href="./../register/index.html" id="register">Register</a></p>
</form>
</div>
</div>
</body>
</html>