-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Commerce</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<main>
<section id="form">
<h1>WELCOME BACK!</h1>
<p id="welcome">Please Login into your Account</p>
<form>
<input type="text" id="username" placeholder="Username" class="input">
<br>
<div><input type="password" id="password" placeholder="Password" class="input"><i class="fa-solid fa-eye" style="color: white;" id="eye"></i></div>
<br><br>
<input type="submit" value="LOGIN" id="login">
</form>
<a href="" id="forget">Forget Password?</a>
<p id="user">New User? <a href="registration.html" id="sign" target="_self">SIGN UP</a></p>
</section>
<section id="image"></section>
</main>
<script src="script.js"></script>
</body>
</html>