Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Login Credentials</title>
5
</head>
6
<body>
7
8
<h2>Member Login</h2>
9
<form action="/login" method="post">
10
<p>
11
<label for="user">Username:</label>
12
<input type="text" id="user" name="username" placeholder="e.g. alex2026">
13
</p>
14
<p>
15
<label for="pass">Password:</label>
16
<input type="password" id="pass" name="password" placeholder="Enter secure password">
17
</p>
18
<button type="submit">Sign In</button>
19
</form>
20
21
</body>
22
</html>
