forked from Sudharani08kanetkar/Login-Page-Using-HTML-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
101 lines (75 loc) · 2.01 KB
/
signup.html
File metadata and controls
101 lines (75 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign Up Page</title>
<link rel="stylesheet" href="sytle.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.fa {
padding: 20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-google {
background: #dd4b39;
color: white;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
</style>
</head>
<body>
<div style="display: flex;justify-content: center;line-height: 2;">
<img src="img.jpg" img height="300px" img width="400px" alt="accept_signup">
<div>
<h1>Sign Up</h1>
<div>
<form>
<div>
<label>Name</label>
<input type="text" placeholder="" />
</div>
<div>
<label div>Email</label>
<input type="email" placeholder="" />
</div>
<div>
<label div>Password</label>
<input type="password" placeholder="" />
</div>
<div>
<label div>Confirm Password</label>
<input type="password" placeholder="" />
</div>
<div>
<input type="button" value="Sign Up" />
</div>
<h3>Connect with us</h3>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-linkedin"></a>
<p>
Already have an account? <a href="login.html">Login here</a>
</p>
</form>
</div>
</div>
</body>
</html>