Guest User

Untitled

a guest
Oct 8th, 2018
767
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.01 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.     <meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no">
  5.     <link rel="stylesheet" href="/static/css/material.min.css">
  6.     <script defer src="/static/js/material.min.js"></script>
  7.     <title>Login - Mobifly Ltd.</title>
  8.     <style>
  9.         .demo-card-wide.mdl-card {
  10.             position: absolute;
  11.             left: 50%;
  12.             top: 50%;
  13.             -webkit-transform: translate(-50%, -50%);
  14.             transform: translate(-50%, -50%);
  15.         }
  16.         .demo-card-wide > .mdl-card__title {
  17.           color: #fff;
  18.           height: 163px;
  19.           background: url('../static/images/logo.png') center / cover;
  20.         }
  21.         .submit-btn {
  22.             color: rgb(255,255,255);
  23.             background-color: rgb(255,0,0);
  24.         }
  25.     </style>
  26. </head>
  27. <body>
  28.     <div class="demo-card-wide mdl-card">
  29.         <div class="mdl-card__title">
  30.             <!-- logo image -->
  31.         </div>
  32.         <form method="POST" action="/gridlock/">
  33.             <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
  34.                 <input type="text" class="mdl-textfield__input" id="email" name="email" required>
  35.                 <label class="mdl-textfield__label" for="email">Email...</label>
  36.                 <div class="mdl-line-ripple"></div>
  37.             </div>
  38.             <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
  39.                 <input type="password" class="mdl-textfield__input" id="password" name="password" required>
  40.                 <label class="mdl-textfield__label" for="password">Password...</label>
  41.                 <div class="mdl-line-ripple"></div>
  42.             </div>
  43.             <center>
  44.                 <button type="submit"
  45.                    class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect submit-btn">
  46.                         Log In
  47.                 </button>
  48.             </center>
  49.             </div>
  50.         </form>
  51.     </div>
  52. </body>
  53. </html>
Add Comment
Please, Sign In to add comment