Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.1 kB
2
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <link rel="stylesheet" href="bootstrap.css" />
  <link rel="stylesheet" href="style.css" />
  <title>A CUSTOMER LOGIN AND REGISTRATION PAGE</title>
</head>
<body class="body">
  <p class="h1">NEW TECH</p>

  <div class="login-area">
    <div class="container">
      <div class="row justify-content-center">
        <div class="col-12 col-md-6"> <!-- Adjust the column size -->
          <div class="card">
            <div class="card-header text-center">
              Sign In
            </div>
            <ul class="list-group list-group-flush">
              <p class="p1">User Name</p>
              <input type="text" />
              <p class="p1">Password</p>
              <input type="password" />
              <div class="d-grid gap-2 col-10 mx-auto">
                <button class="btn btn-primary " type="button">Login</button>
              </div>
            </ul>
          </div>
        </div>
      </div>
    </div>
  </div>

</body>
</html>