mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-13 13:08:52 +01:00
16 lines
629 B
Cheetah
16 lines
629 B
Cheetah
<%inherit file="navbar.tmpl"/>
|
|
<%block name="core">
|
|
<div class="row clearfix" style="margin-top:30px">
|
|
<div class="col-md-4 column"></div>
|
|
<div class="col-md-4 column well">
|
|
<form method='POST' action='/searchadmin' class="navbar-form navbar-right" role="search">
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="searchstring" placeholder="Search User">
|
|
</div>
|
|
<button type="submit" class="btn btn-default">Submit</button>
|
|
</form>
|
|
</div>
|
|
<div class="col-md-4 column"></div>
|
|
</div>
|
|
</%block>
|