-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathFakeBook.html
153 lines (152 loc) · 7.69 KB
/
FakeBook.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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<span style="color: white; ">
<div style="text-align: center;"><h1>fakebook</h1></div></span>
<body bgcolor="#154360" textcolor="#FDFEFE">
<span style="color: white; ">
<div style="text-align: center;">
<h4 >Registration</h4></div></span>
<span style="color: white; font-size: large; ">
<div style="text-align: center;">
It is safe and it will always be!</div></span>
<div style="text-align: center;">
<td cellpadding="12">
<form>
<tr>
<td>
<form>
<fieldset>
<legend>None-Important Information</legend>
<table cellpadding="12">
<tr>
<td>
<input type="text" name="Text box name" placeholder="First name">
</td>
<td>
<input type="text" name="Text box name" placeholder="Last Name">
</td>
</tr>
<tr>
<td>
<input type="text" name="Text box name" placeholder="Your Email">
</td>
<td>
<input type="text" name="Text box name" placeholder="Phone Number">
</td>
</tr>
<tr>
<td>
<input type="text" name="Text box name" placeholder="Your Password">
</td>
<td>
<input type="password" name="Text box name" placeholder="Website">
</td>
</tr>
<tr>
<td>
Birthday
<label>
<input type="date" name="B'day">
</label>
</td>
<td>
<label>
<input type="radio" name="gender" value="male">
</label>Male
<label>
<input type="radio" name="gender" value="female">
</label>Female
<label>
<input type="radio" name="gender" value="other">
</label>Other
</td>
</tr>
</table>
</fieldset>
<fieldset>
<legend>
Important Information *required
</legend>
<table>
<tr>
<td>
<label>
<select>
<option value="lanka">Sri Lanka</option>
<option value="india">India</option>
<option value="us">United States of America</option>
<option value="japan">Japan</option>
<option value="china">China</option>
<option value="aus">Australia</option>
</select>
</label>
</td>
<td>
<input type="text" name="Text box name" placeholder="Village">
</td>
<td>
<input type="text" name="Text box name" placeholder="District">
</td>
</tr>
<tr>
<td>
<input type="text" name="Text box name" placeholder="Street">
</td>
<td>
<input type="text" name="Text box name" placeholder="Number">
</td>
<td>
Qualifications<br>
<table>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><label>
<input type="checkbox" name="qualification" value="degree">
</label>Degree<br>
<label>
<input type="checkbox" name="qualification" value="masters">
</label>Masters<br>
<label>
<input type="checkbox" name="qualification" value="other">
</label>Other<br>
</table>
</td>
</tr>
<tr>
<td>
Door Color<br>
<label>
<input type="color" name="Door color" value="#C0392B">
</label>
</td>
<td>
<input type="text" name="Text box name" placeholder="Street">
</td>
</tr>
</table>
<table>
<tr>
<td>
More Personal Information<br>
<label>
<textarea rows="60" cols="50">Give us more information.!</textarea>
</label>
</td>
</tr>
</table>
</fieldset>
</form>
</td>
</tr>
</form>
</td>
</div>
<br /><br /><center><a id="back_to_home" href="home.html">Go back to home</a></center>
</body>
</html>