21 lines
638 B
HTML
21 lines
638 B
HTML
{% extends "main_django.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block body %}
|
|
<section style="margin: 0 auto; width: 480px; padding: 50px;">
|
|
<div class="inner-wrapper">
|
|
<header>
|
|
<h2 style="text-align: center;">{% trans "Confirm Your Password to Access the Instructor Dashboard" %}</h2>
|
|
</header>
|
|
<hr />
|
|
<div style="margin: 0px auto; width: 218px;">
|
|
<form class="sudo-form" method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p>
|
|
<input type="submit" value="Submit" />
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |