You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/users/templates/users/user_password_verify.html

25 lines
848 B

{% extends '_base_only_content.html' %}
{% load static %}
{% load i18n %}
{% load bootstrap3 %}
{% block custom_head_css_js %}
{% endblock %}
{% block html_title %}{% trans 'Verify password' %}{% endblock %}
{% block title %} {% trans 'Verify password' %}{% endblock %}
{% block content %}
<form class="" role="form" method="post" action="" class="form-horizontal">
{% if 'password' in form.errors %}
<p class="red-fonts">{{ form.password.errors.as_text }}</p>
{% endif %}
{% csrf_token %}
<div class="form-input form-group">
<input type="password" class="form-control" name="{{ form.password.html_name }}" placeholder="{% trans 'Password' %}" required="">
</div>
<button type="submit" class="btn btn-primary">{% trans 'Confirm' %}</button>
</form>
{% endblock %}