11 lines
285 B
HTML
11 lines
285 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html><head><title>Login</title></head>
|
||
|
|
<body>
|
||
|
|
<!--ERROR-->
|
||
|
|
<form method="post" action="/login">
|
||
|
|
<label>Username <input name="username"></label>
|
||
|
|
<label>Password <input name="password" type="password"></label>
|
||
|
|
<button type="submit">Login</button>
|
||
|
|
</form>
|
||
|
|
</body></html>
|