jumpserver/apps/users/templates/users/_base_otp.html

21 lines
706 B
Python

{% extends '_without_nav_base.html' %}
{% load static %}
{% load i18n %}
{% block body %}
<article>
<div class="" style="text-align: center; margin-bottom: 50px">
<h2>
{% block small_title %}
{% endblock %}
</h2>
</div>
<div>
<div class="verify">{% trans 'Please enter the password of' %}&nbsp;{% trans 'account' %}&nbsp;<span>{{ user.username }}</span>&nbsp;{% trans 'to complete the binding operation' %}</div>
<hr style="width: 500px; margin: auto; margin-top: 10px;">
{% block content %}
{% endblock %}
</div>
</article>
{% endblock %}