diff options
Diffstat (limited to 'ogcp/templates/auth/add_user.html')
-rw-r--r-- | ogcp/templates/auth/add_user.html | 54 |
1 files changed, 3 insertions, 51 deletions
diff --git a/ogcp/templates/auth/add_user.html b/ogcp/templates/auth/add_user.html index cc5ed09..4661236 100644 --- a/ogcp/templates/auth/add_user.html +++ b/ogcp/templates/auth/add_user.html @@ -1,53 +1,5 @@ -{% extends 'users.html' %} -{% import "bootstrap/wtf.html" as wtf %} +{% extends 'auth/user_form.html' %} -{% set sidebar_state = 'disabled' %} -{% set btn_back = true %} +{% block subhead_heading %}{{_('Add user')}}{% endblock %} -{% block nav_user_add %}active{% endblock %} -{% block content %} - -<h1 class="m-5">{{_('Add a user')}}</h1> - -<form action="{{ url_for('user_add_post') }}" method="post" class="form"> - {{ form.hidden_tag() }} - - <div class="form-group"> - {{ form.username.label(class_='form-label') }} - {{ form.username(class_='form-control') }} - </div> - - <div class="form-group"> - {{ form.pwd.label(class_='form-label') }} - {{ form.pwd(class_='form-control') }} - </div> - - <div class="form-group"> - {{ form.pwd_confirm.label(class_='form-label') }} - {{ form.pwd_confirm(class_='form-control') }} - </div> - - <div class="form-group form-check"> - {{ form.admin(class_='form-check-input') }} - {{ form.admin.label(class_='form-check-label') }} - </div> - - <div class="form-group"> - {{ form.scopes.label(class_='form-label') }} - <div class="form-text text-muted">{{ form.scopes.description }}</div> - <div> - {% for value, label, checked in form.scopes.iter_choices() %} - <div class="form-check"> - <input class="form-check-input" type="checkbox" name="{{ form.scopes.name }}" value="{{ value }}" {% if checked %} checked {% endif %}> - <label class="form-check-label">{{ label }}</label> - </div> - {% endfor %} - </div> - </div> - - <div class="form-group"> - {{ form.submit_btn(class_='btn btn-primary') }} - </div> -</form> - -{% endblock %} +{% block form_action %}{{ url_for('user_add_post') }}{% endblock %} |