-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacebook.html
78 lines (57 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<title>
Log in to Facebook
</title>
<link rel="facebook icon" href="images/facebook.ico">
<link rel="stylesheet" href="facebook_style.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&family=Roboto&display=swap" rel="stylesheet">
<script src="facebook_form_valid.js"></script>
</head>
<header>
<div class="fb_logo"><img src="images/facebook_icons.png"></div>
</header>
<body>
<a href="home.html">
<img src="images/white_home.png" alt="Home" id="homeButton">
</a>
<div class="boxBorder boxContainer">
<h2>Log Into Facebook</h2>
<br>
<form id="form" action="oops!.html" method="post">
<div>
<input id="username" type="email" class="input1" name="username" placeholder="Email" required>
</div>
<br>
<div class="passwordInput">
<input id="password" class="input1" name="password" placeholder="Password" required><br>
</div>
<br>
<div>
<input type="button" onclick="facebookFormValidation()" id="button" name="button" value="Log In" class="button">
</div>
</div>
</form>
<footer>
<div class="facebookFooter">
<ul>
<li>English (US)</li>
<li>Español</li>
<li>Français (France)</li>
<li>中文(简体)</li>
<li>العربية</li>
<li>Português (Brasil)</li>
<li>한국어</li>
<li>Italiano</li>
<li>Deutsch</li>
<li>हिन्दी</li>
<li>日本語</li>
</ul>
</div>
<div id="footer" class="footer">
This is not a real Facebook login page.
</div>
</footer>
</body>
</html>