forked from sanoob-ks/facebook-loginpage-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
81 lines (76 loc) · 3.83 KB
/
index2.html
File metadata and controls
81 lines (76 loc) · 3.83 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
<!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>Sign Up</title>
<link rel="stylesheet" href="fb.css">
<link rel="icon" href="https://cdn3.iconfinder.com/data/icons/social-media-circle/512/circle-facebook-512.png" type="image/xicon" >
</head>
<body>
<div class="container">
<div class="div2-form">
<div class="headPart">
<div class="signup">Sign Up <a class="close1" href="index.html"><img class="imgClose" src="https://static.xx.fbcdn.net/rsrc.php/v3/yZ/r/C6QZ-pcv3Bd.png" alt=""></a></div>
<div class="para1">It's quick and easy</div>
<hr class="horLine">
</div>
<div class="regField">
<input type="text" placeholder=" First name" class="fName">
<input type="text" placeholder=" Surname" class="sName"><br>
<input type="text" placeholder=" Mobile number or Email Address" class="mobOrEmail"><br>
<input type="password" placeholder=" password" class="password"><br>
</div>
<div class="dobDiv">
<label for="" class="dobLabel">Date of birth <a href="" class="qmark">?</a></label><br>
<select name="" id="" class="day">
<option value="">day</option>
<option value="">1</option>
<option value="">2</option>
<option value="">3</option>
<option value="">4</option>
</select>
<select name="" id="" class="month">
<option value="">month</option>
<option value="">jan</option>
<option value="">feb</option>
<option value="">mar</option>
<option value="">apr</option>
</select>
<select name="" id="" class="year">
<option value="">year</option>
<option value="">2021</option>
<option value="">2019</option>
<option value="">2018</option>
<option value="">2017</option>
</select>
<div class="genderDiv">
<label for="" class="gender" >Gender <a href="" class="qmark">?</a></label><br>
<div class="div-radio">
<label for="" class="">Female</label>
<input type="radio" name="gender" class="btnradio">
</div>
<div class="div-radio">
<label for="" class="">Male</label>
<input type="radio" name="gender" class="btnradio">
</div>
<div class="div-radio">
<label for="" class="">Custom</label>
<input type="radio" name="gender" class="btnradio"><br>
</div>
</div>
<div class="div-para-html2"><p class="paraHtml2">
People who use our service may have uploaded your contact information to<br>Facebook. <a href="" class="link1">Learn more.</a>
</p></div>
<div>
<p class="paraHtml3">By clicking Sign Up, you agree to our <a href="" class="link1">Terms</a>, <a href="" class="link1">Privacy Policy</a> and <a href="" class="link1">Cookies Policy</a>.<br>You may receive SMS notifications from us and can opt out at any time</p>
</div>
<div>
<button class="btnSignup">Sign up</button>
</div>
</div>
</div>
</div>
</body>
</html>