Files
bradley-university/CS370/Flab-u-Less-Fitness/public/member/login.html
T
2026-02-03 08:18:39 -06:00

20 lines
495 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Member Login</title>
</head>
<body>
<h1>Member Login</h1>
<form action="/login" method="post">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</body>
</html>