13 lines
323 B
HTML
13 lines
323 B
HTML
<html>
|
|
<head>
|
|
<title>Log-in page</title>
|
|
</head>
|
|
<body>
|
|
<form action="/login" method="POST">
|
|
<input type="text" name="username" placeholder="[Username]" />
|
|
<input type="password" name="password" placeholder="[Password]" />
|
|
<input type="submit" value="Log-in" />
|
|
</form>
|
|
</body>
|
|
</html>
|