mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-11 12:08:51 +01:00
6f98076281
- Switch from base64 to URL encoding for the passing the URL, using the built-in Mako filtering - Apply HTML filtering to Mako output by default - Disable HTML filtering for nested templates in adduser, modify, and selfmodify
32 lines
1.1 KiB
Cheetah
32 lines
1.1 KiB
Cheetah
## -*- coding: utf-8 -*-
|
|
<%inherit file="navbar.tmpl"/>
|
|
<%block name="core">
|
|
<div class="row clearfix top-buffer bottom-buffer">
|
|
<div class="col-md-2 column">
|
|
</div>
|
|
<div class="col-md-12 column">
|
|
<div class="well well-sm">
|
|
<form method='POST' autocomplete="off" action='/adduser' role="form" class="form-signin" id=form>
|
|
<fieldset>
|
|
<legend>Fill new user's attributes:</legend>
|
|
${form | n}
|
|
</fieldset>
|
|
<fieldset>
|
|
<legend>Enable/Disable user's roles:</legend>
|
|
${roles | n}
|
|
</fieldset>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<button class="btn btn-default green" type="submit">
|
|
<span class="glyphicon glyphicon-plus-sign"></span> Add User</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<script type="text/javascript" src="/static/js/ppolicy.js"></script>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-2 column">
|
|
</div>
|
|
</div>
|
|
</%block>
|