15 lines
367 B
HTML
15 lines
367 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<h2>Login</h2>
|
|
<form method="POST" action="/login">
|
|
<input type="text" name="username" placeholder="Username" required /><br/>
|
|
<input type="password" name="password" placeholder="Password" required /><br/>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|