2020-05-18 11:14:40 +02:00
|
|
|
{% extends 'default.html' %}
|
|
|
|
{% set active_page = "setting" %}
|
|
|
|
{% block title %}
|
|
|
|
SUDO MODE
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h2">Entering Sudo Mode</h1>
|
|
|
|
<p>
|
2022-06-10 15:50:44 +02:00
|
|
|
The next page contains security related setting.
|
2020-05-18 11:14:40 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-06-10 15:50:44 +02:00
|
|
|
Please enter your account password so that we can ensure it's you.
|
2020-05-18 11:14:40 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<form method="post">
|
|
|
|
{{ password_check_form.csrf_token }}
|
|
|
|
|
|
|
|
<div class="font-weight-bold mt-5">Password</div>
|
|
|
|
|
|
|
|
{{ password_check_form.password(class="form-control", autofocus="true") }}
|
|
|
|
{{ render_field_errors(password_check_form.password) }}
|
|
|
|
<button class="btn btn-lg btn-danger mt-2">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|