express js login example
Example: login express js
<!DOCTYPE html>
<html>
<head>
<title>Example Login Form</title>
</head>
<body>
<form action="/login" method="post">
<!-- user input-->
Username:<br>
<input type="text" name="username" placeholder="Username" required><br><br>
Password:<br>
<input type="password" name="password" placeholder="Password" required><br><br>
<!-- submit button -->
<input type="submit" value="login">
</form>
</body>
</html>