2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2020-05-18 11:14:40 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% set active_page = "setting" %}
|
|
|
|
{% block title %}SUDO MODE{% endblock %}
|
2020-05-18 11:14:40 +02:00
|
|
|
{% block default_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-05-18 11:14:40 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h2">Entering Sudo Mode</h1>
|
2022-07-04 16:01:04 +02:00
|
|
|
<p>The next page contains security related setting.</p>
|
|
|
|
<p>Please enter your account password so that we can ensure it's you.</p>
|
2020-05-18 11:14:40 +02:00
|
|
|
<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>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% endblock %}
|