mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-05 00:58:55 +01:00
19 lines
647 B
Cheetah
19 lines
647 B
Cheetah
|
<%inherit file="navbar.tmpl"/>
|
||
|
<%block name="core">
|
||
|
<div class="row clearfix top-buffer bottom-buffer">
|
||
|
<div class="col-md-12 column">
|
||
|
<div class="well well-sm">
|
||
|
<form method='POST' action='/adduser' role="form" class="form-signin">
|
||
|
${form}
|
||
|
<div class="form-group">
|
||
|
<div class="input-group">
|
||
|
<button class="btn btn-default green" type="submit">
|
||
|
<span class="glyphicon glyphicon-plus-sign"> Add User</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</%block>
|