41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
xam<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
|
<link rel="stylesheet" href="lsf.css">
|
|
<title>Login | UITM BAZAAR</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container" id="container">
|
|
<div class="form-container sign-in">
|
|
<form method="post" action="login.php">
|
|
<h1>Sign In</h1>
|
|
<br>
|
|
<input type="text" placeholder="ID" name="AccID" size="12" required>
|
|
<input type="password" placeholder="Password" name="AccPass" required>
|
|
<a href="forgot.html">Forget Your Password?</a>
|
|
<button type="submit" name= Submit>Sign In</button>
|
|
</form>
|
|
</div>
|
|
<div class="toggle-container">
|
|
<div class="toggle">
|
|
<div class="toggle-panel toggle-right">
|
|
<h1>Hello, Friend!</h1>
|
|
<p>Register with your personal details to use all site features</p>
|
|
<a href="signin.html"><button class="hidden" id="register">Sign Up</button></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html>
|
|
|