flaskpage / templates /page_password_form.html
futranbg's picture
Create templates/page_password_form.html
55ccd78 verified
raw
history blame contribute delete
510 Bytes
{% 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 %}