15 lines
355 B
HTML
15 lines
355 B
HTML
<html>
|
|
<head>
|
|
<title>Authentication required</title>
|
|
</head>
|
|
<body>
|
|
<h1>Authentication required</h1>
|
|
<form action="/api--authenticate" method="POST">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password"></input>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|