-
Notifications
You must be signed in to change notification settings - Fork 1
/
signin.html
31 lines (31 loc) · 1.26 KB
/
signin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Signin Form | HTML & CSS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="login-box">
<div class="left-box">
<h1>Sign In</h1>
<input type="email" name="email" placeholder="Email Address">
<input type="password" name="password" placeholder="Password">
<button type="submit" name="signin-button">Sign In</button>
</div>
<div class="right-box">
<span class="signinwith">with<br>Social Network</span>
<button class="social facebook">Log in with Facebook</button>
<button class="social twitter">Log in with Twitter</button>
<button class="social google">Log in with Google</button>
<button class="social linkedin">Log in with Linkedin</button>
</div>
<div class="or">OR</div>
<div class="another-link">New here? <a href="signup.html">Create an account</a></div>
</div>
</div>
</body>
</html>