mirror of https://github.com/jumpserver/jumpserver
16 lines
568 B
HTML
16 lines
568 B
HTML
{% extends 'users/_user.html' %}
|
|
{% load i18n %}
|
|
{% load bootstrap3 %}
|
|
{% block user_template_title %}{% trans "Create user" %}{% endblock %}
|
|
{#{% block username %}#}
|
|
{# {% bootstrap_field form.username layout="horizontal" %}#}
|
|
{#{% endblock %}#}
|
|
{% block password %}
|
|
<h3>{% trans 'Auth' %}</h3>
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">{% trans 'Password' %}</label>
|
|
<div class="col-sm-8 controls" >
|
|
{% trans 'Reset link will be generated and sent to the user. ' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |