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