-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 1.92 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 1.92 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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="style.css">
<script src="https://kit.fontawesome.com/10ac5f16c8.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<div class="container">
<div class="image">
<img src="Demo1.jpg" alt="">
</div>
<form class="form" action="post">
<div class="formbox">
<p>Welcome back</p>
<h1>
Login to your account
</h1>
<div class="inbox">
<span>Email</span>
<input type="email" id="mail" name="" placeholder="Enter your Email" >
</div>
<div class="inbox">
<span>Password</span>
<input type="password" id="pswd" name="" placeholder="Enter the Password" >
</div>
<div class="remember">
<input type ="radio" name=""> Save the login
</div>
<div class="forgot">
<lable><a href="#forgotpassword">Forgot Password ?</a></lable>
</div>
<div class="buttons">
<a href="welcome.html"><input type ="submit" value="Login now" name="" onclick="check(event)"></a>
</div>
<div class="err">
<span id="error"></span>
</div>
<div class="gbutton">
<button class="input" ><i class="fa fa-brands fa-google"></i> Or sign-in with google</button>
</div>
<div class="footer">
<p>Don't have an account? <a href="#">Join free today</a></p>
</div>
</div>
</form>
</div>
<script src="validation.js"></script>
</body>
</html>