File size: 510 Bytes
55ccd78 |
1 2 3 4 5 6 7 8 9 10 |
{% extends 'base.html' %}
{% block content %}
<h2>Yêu cầu Mật khẩu Trang</h2>
<p>Để truy cập nội dung này, vui lòng nhập mật khẩu trang.</p>
<form method="POST" action="{{ url_for('page_password_form') }}?next={{ next_url }}">
<label for="page_password_input">Mật khẩu trang:</label>
<input type="password" id="page_password_input" name="page_password_input" required autofocus>
<button type="submit">Xác nhận</button>
</form>
{% endblock %} |