20 lines
744 B
HTML
20 lines
744 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title></title>
|
|
</head>
|
|
<body style="background: gray;">
|
|
<div style=
|
|
"width: max-content; background: lightgray; padding: 2ex; margin-left: auto; margin-right: auto; margin-top: 2em; border-radius: 5px; line-height: 5ex;">
|
|
<form method="post">
|
|
Password required for file <a href="{{ redirect | safe }}"><strong>{{ filename }}</strong></a><br>
|
|
<input type="hidden" name="redirect" value="{{ redirect | safe }}">
|
|
<input type="hidden" name="token" value="{{ token }}">
|
|
<input type="password" name="password" required autofocus><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|