forked from taruntailor7/fraazo-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
33 lines (32 loc) · 1.18 KB
/
login.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
31
32
33
<!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" />
<title>Log In</title>
<link rel="stylesheet" href="login.css" />
</head>
<body>
<div class="container">
<div class="form">
<a href="index.html"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQMHTwpbzASi_vYUW2wYr-qNjA1_WWsy4uqGw&usqp=CAU" alt="fraazo" class="fr"/></a>
<h1>Sign In</h1>
<form onsubmit="login(event)">
<div class="input">
<label>Email</label>
<input type="email" id="email" placeholder="Enter Your Email Address" required>
</div>
<div class="input">
<label>Password</label>
<input type="password" id="pass" placeholder="Enter your password" required/>
<button type="submit" class="submit">Sign In</button>
</div>
<!-- <p>Forget Password</p> -->
<p>Don't have an account ? <a href="signup.html">SignUp</a></p>
</form>
</div>
</div>
</body>
</html>
<script src="./login.js"></script>