-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.37 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facebook Login page Clone</title>
<style>
body{
text-align: center;
}
.Height{
height: 40px;
}
h1{
font-size: 50px;
color: darkblue;
}
button{
width: 200px;
height: 50px;
font-size: 20px;
color: white;
background-color: darkcyan;
border-radius: 5px;
border: none;
}
</style>
</head>
<body>
<h1>Facebook</h1>
<center>
<fieldset style="width: 300px;" height="900px">
<form>
<h2>Login to Facebook</h2>
<input type="text" placeholder="Email or Phone Number" required size="30" class="Height"><br><br>
<input type="password" placeholder="Password" required size="30" class="Height"><br><br>
<button type="submit">Log In</button><br><br>
<a href="forgot.html">Forgotten password?</a><br><br>
<p>Don't have an account? <a href="signup.html">Sign Up</a></p>
</form>
</fieldset>
</center>
<center><p>NOTE<div style="text-align:center; padding:10px; background:#fffae6; color:#000;">
⚠️ This is a student project made for educational purposes only. Not affiliated with Facebook.
</div>
</p></center>
</body>
</html>