23 lines
617 B
HTML
23 lines
617 B
HTML
<html>
|
|
<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><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|