Friday, December 13, 2019

creating a login form using html

<!DOCTYPE html>
<html>
<head>
  <title>login</title>
</head>
<body>
  <div class="header">
  <h2>Login</h2>
  </div>


  <form>
      <label>Email</label>
      <input type="text" name="email" >
    </div>
  <label>Password</label>
  <input type="password" name="password">
  </div>
  <div >
  <button type="submit" name="login_user">Login</button>
  </div>
 
  </form>
</body>
</html>

No comments:

Post a Comment

php udate results code

CREATE A FILE NAME IT update.php <?php session_start(); // Include config file require_once "config.php"; // Define ...