2024-09-14 16:53:26 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-09-16 13:54:54 +02:00
|
|
|
<title>Password Protected Content - sxbin</title>
|
|
|
|
<meta property="og:title" content="Password Protected Content - sxbin">
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:url" content="{{ request.url }}">
|
|
|
|
<meta property="og:description" content="This {{ content_type }} is password protected. Enter the password to view.">
|
|
|
|
<meta property="og:site_name" content="sxbin">
|
|
|
|
<meta property="theme-color" content="#4CAF50">
|
2024-09-14 16:53:26 +02:00
|
|
|
<style>
|
2024-09-16 13:54:54 +02:00
|
|
|
/* Add your styles here */
|
2024-09-14 16:53:26 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-09-16 13:54:54 +02:00
|
|
|
<h1>Password Protected Content</h1>
|
|
|
|
<p>This {{ content_type }} is password protected. Please enter the password to view.</p>
|
|
|
|
{% if error %}
|
|
|
|
<p style="color: red;">{{ error }}</p>
|
|
|
|
{% endif %}
|
|
|
|
<form method="POST">
|
|
|
|
<input type="password" name="password" required>
|
|
|
|
<button type="submit">Submit</button>
|
|
|
|
</form>
|
2024-09-14 16:53:26 +02:00
|
|
|
</body>
|
|
|
|
</html>
|