15 lines
441 B
HTML
15 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<form action="/login" method="POST">
|
|
<input type="text" name="username" placeholder="Username"><br>
|
|
<input type="password" name="password" placeholder="Password"><br>
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</body>
|
|
</html>
|