Skip to content

Commit 85290c4

Browse files
committed
Added new: Facebook login clone (appearance only).
1 parent af6e309 commit 85290c4

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Facebook - log in or sign up</title>
5+
<meta charset="UTF-8">
6+
<link rel="stylesheet" href="log_in_styles.css"/>
7+
</head>
8+
<body>
9+
10+
<h1>facebook</h1>
11+
12+
<p>Connect with friends and the world<br/>around you on Facebook.</p>
13+
14+
<form>
15+
<input id="username" class="inside-form" type="email" name="username" placeholder="Email or phone number"/><br/>
16+
<input id="password" class="inside-form" type="password" name="password" placeholder="Password"/><br/>
17+
<input id="log-in" class="inside-form" type="submit" value="Log In"/><br/>
18+
<a id="forgot-password" class="inside-form" href="#">Forgot password?</a><br/>
19+
<input id="create-new-account" class="inside-form" type="button" value="Create New Account"/>
20+
</form>
21+
22+
<p><b>Create a Page</b> for a celebrity, brand or business.</p>
23+
24+
<footer>
25+
<p>Language Language Language Language Language</p>
26+
<p>Language Language Language Language Language</p>
27+
<p>Language Language Language Language Language</p>
28+
</footer>
29+
30+
</body>
31+
</html>
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
body{
2+
margin: 0;
3+
text-align: center;
4+
font-family: sans-serif;
5+
}
6+
7+
h1{
8+
color: rgb(24, 119, 242);
9+
font-family: 'Helvetica Neue', Times, serif;
10+
}
11+
12+
form{
13+
box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.192);
14+
margin: 30px 50px;
15+
padding: 20px;
16+
}
17+
18+
.inside-form{
19+
margin: 5px 0px;
20+
font-family: sans-serif;
21+
}
22+
23+
#username{
24+
width:300px;
25+
padding: 7px 0px;
26+
}
27+
28+
#password{
29+
width:300px;
30+
padding: 7px 0px;
31+
}
32+
33+
#log-in{
34+
background-color: rgb(24, 119, 242);
35+
border: 0;
36+
width: 300px;
37+
padding: 7px 0px;
38+
color: white;
39+
font-weight: bolder;
40+
border-radius: 5px;
41+
}
42+
43+
#forgot-password{
44+
font-size: 14px;
45+
text-decoration: none;
46+
}
47+
48+
#create-new-account{
49+
margin-top: 40px;
50+
border: 0;
51+
color: white;
52+
background-color: rgb(37, 156, 33);
53+
width: 150px;
54+
padding: 10px 0px;
55+
border-radius: 3px;
56+
}
57+
58+
footer{
59+
position: absolute;
60+
box-shadow: 0px -5px 50px 40px rgba(0, 0, 0, 0.103);
61+
bottom: 0px;
62+
height: 130px;
63+
width: 100%;
64+
color: rgb(100, 100, 100);
65+
}

0 commit comments

Comments
 (0)