Mini Kabibi Habibi

Current Path : C:/xampp/htdocs/todolist/login/
Upload File :
Current File : C:/xampp/htdocs/todolist/login/home.php

<!DOCTYPE html>
<html>
<head>
  <title>LOGIN</title>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
  <form action="login.php" method="post">
    <h2>LOGIN</h2>
    <?php if (isset($_GET['error'])) { ?>
      <p class= "error"><?php echo $_GET['error']; ?></p>
    <?php } ?>
    <label>User Name</label>
    <input type="text" name="uname" placeholder="User Name"><br>

    <label>Password</label>
    <input type="text" name="password" placeholder="Password"><br>

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

  </form>
</body>
</html>