-
Notifications
You must be signed in to change notification settings - Fork 37
/
facebook.html
80 lines (78 loc) · 3.93 KB
/
facebook.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Facebook</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-lg-6">
<div class="text-center mb-4">
<h1>Facebook</h1>
</div>
<div class="bg-black p-4 rounded shadow">
<form>
<div class="form-group">
<label for="emailOrPhone">Email or Phone</label>
<input type="text" class="form-control" id="emailOrPhone">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password">
</div>
<button type="submit" class="btn btn-primary btn-block">Log In</button>
</form>
</div>
</div>
<div class="col-lg-6">
<h2 class="mb-3">Create a new Account</h2>
<p>It's quick and easy. Start with Meta</p>
<form class="getData">
<div class="form-row">
<div class="form-group col-md-4">
<input type="text" class="form-control" placeholder="First Name">
</div>
<div class="form-group col-md-4">
<input type="text" class="form-control" placeholder="Middle Name">
</div>
<div class="form-group col-md-4">
<input type="text" class="form-control" placeholder="Last Name">
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="Mobile Number or Email Address">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="New Password">
</div>
<div class="form-group">
<label>Date of Birth</label>
<input type="date" class="form-control">
</div>
<div class="form-group">
<label>Gender</label><br>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="gender" id="male">
<label class="form-check-label" for="male">Male</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="gender" id="female">
<label class="form-check-label" for="female">Female</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="gender" id="notToSay">
<label class="form-check-label" for="notToSay">Prefer Not to Say</label>
</div>
</div>
<button type="submit" class="btn btn-primary btn-block">Sign Up</button>
</form>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>