LogIn Page HTML CSS

                 LogIn Page HTML CSS


<html>
  <head>
    <meta charset="utf-8" />
    <title>Movieshub: Sign-in</title>
    <link rel="stylesheet" type="text/css" href="style.css" />
  </head>
  <body>
    <div class="login-box">
      <div class="box-root" style="min-height: 100vh; flex-grow: 1">
        <h1><a href="#" rel="follow me">Movieshub</a></h1>
        <br />
        <div class="formbg-outer">
          <div class="formbg">
            <span class="padding-bottom--15">Sign in to your account</span>
            <form id="login">
              <div class="field padding-bottom--24">
                <label for="email">Email</label>
                <input type="email" name="email" />
              </div>
              <div class="field padding-bottom--24">
                <div class="psw">
                  <label for="password">Password</label>
                  <div class="reset-psw">
                    <a href="#">Forgot your password?</a>
                  </div>
                </div>
                <input type="password" name="password" />
              </div>
              <div class="field field-checkbox padding-bottom--24">
                <label for="checkbox">
                  <input type="checkbox" name="checkbox" /> Remember email
                </label>
              </div>
              <div class="field padding-bottom--24">
                <input type="submit" name="submit" value="Login" />
              </div>
            </form>
          </div>
        </div>
        <br />
        <div class="footer-link padding-top--24">
          <span>Don't have an account? <a href="">Sign up</a></span>
          <div class="listing">
            <span><a href="#">© Movieshub</a></span> &nbsp;&nbsp;&nbsp;&nbsp;
            <span><a href="#">Contact</a></span
            >&nbsp;&nbsp;&nbsp;&nbsp;
            <span><a href="#">Privacy & terms</a></span>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>

Comments

Popular posts from this blog

Basic Data types | HackerRank Solution...

There are three people sitting in a room - Alice, Bob, and Charlie. They need to decide on the temperature to set on the air conditioner. Everyone has a demand each:

Chef has recently introduced a feature which allows you to open any user’s submitted code (not just your own), and ask an AI to explain that code in English. For example, you can go to https://www.codechef.com/viewsolution/70530506 and click on "Analyse This Code".