login form using HTML,CSS,BOOTSTRAP

SIMPLE LOGIN FROM USING HTML,CSS,BOOTSTRAP:

Turn on desktop site to get proper view





 <!doctype html>
<html lang="en">
  <head>
    <title>Login</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css
/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/
iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  </head>
  <style>
      .backimg{
          background-imageurl("backwedding.jpg");
          background-repeatno-repeat;
          background-sizecover;
      }
    .login{
        height425px;
        width700px;
        background-colorwhitesmoke;
        border2px solid blue;
        text-aligncenter;
        marginauto;
        margin-top80px;
        border-radius10px;
    }
    .couple{
        width350px;
        height:400px;
        margin-top0px;
    }
    .loginmargin{
        margin-top30px;
    }
    input{
        margin-right5em;
    }
  </style>
  <body class="backimg">
      <div class="login">
          <img src="couple.png" alt="couple image" class="couple" align="left">
      <div class="form-group row col-xs-2 loginmargin">
        <label for="">E-mail:</label>
        <input type="text" name="email" id="" class="form-control" 
placeholder="E-mail"required>
      </div>
      <div class="form-group row col-xs-2">
        <label for="">Password:</label>
        <input type="text" name="password" id="" class="form-control"
 placeholder="Password" required>
      </div>
      <input type="submit" name="submit" value="Login" class="btn-success "><br><br>
      New User  <a href="register.html">Register here</a>

      
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
      </body>
</html>

Comments