The Best Bootstrap Login Form Templates To Use


 

<!DOCTYPE html>

<html>

<head>

  <title>Login Panel</title>

  <style>

    /* CSS styling for the login panel */

    body {

      font-family: Arial, sans-serif;

      background-color: #f2f2f2;

    }

    

    .login-container {

      max-width: 300px;

      margin: 0 auto;

      padding: 20px;

      background-color: #fff;

      border: 1px solid #ccc;

      border-radius: 4px;

      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    }

    

    .login-container h2 {

      text-align: center;

      margin-bottom: 20px;

    }

    

    .login-container input[type="text"],

    .login-container input[type="password"] {

      width: 100%;

      padding: 12px 20px;

      margin: 8px 0;

      display: inline-block;

      border: 1px solid #ccc;

      box-sizing: border-box;

      border-radius: 4px;

    }

    

    .login-container button {

      background-color: #4CAF50;

      color: #fff;

      padding: 12px 20px;

      border: none;

      border-radius: 4px;

      cursor: pointer;

      width: 100%;

    }

    

    .login-container button:hover {

      background-color: #45a049;

    }

  </style>

</head>

<body>

  <div class="login-container">

    <h2>Login</h2>

    <form>

      <label for="username">Username:</label>

      <input type="text" id="username" name="username" placeholder="Enter your username" required>

      

      <label for="password">Password:</label>

      <input type="password" id="password" name="password" placeholder="Enter your password" required>

      

      <button type="submit">Login</button>

    </form>

  </div>

</body>

</html>

0 Comments