1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-05-28 22:58:04 +02:00
ldapcherry/resources/templates/selfmodify.tmpl

26 lines
888 B
Cheetah
Raw Normal View History

2015-06-27 22:35:34 +02:00
## -*- coding: utf-8 -*-
2015-05-31 23:42:24 +02:00
<%inherit file="navbar.tmpl"/>
<%block name="core">
<div class="row clearfix top-buffer bottom-buffer">
2015-06-03 22:45:58 +02:00
<div class="col-md-2 column">
</div>
2015-06-10 23:30:16 +02:00
<div class="col-md-12 column">
2015-05-31 23:42:24 +02:00
<div class="well well-sm">
2015-06-03 23:57:22 +02:00
<form method='POST' action='/selfmodify' role="form" class="form-signin" data-toggle="validator">
2015-06-24 00:58:32 +02:00
<legend>Modify your attributes:</legend>
2015-05-31 23:42:24 +02:00
${form}
2015-06-24 00:58:32 +02:00
</fieldset>
2015-05-31 23:42:24 +02:00
<div class="form-group">
<div class="input-group">
<button type="submit" class="btn btn-default blue">
<span class="glyphicon glyphicon-cog"></span> Modify</button>
</div>
</div>
</form>
</div>
</div>
2015-06-03 22:45:58 +02:00
<div class="col-md-2 column">
</div>
2015-05-31 23:42:24 +02:00
</div>
</%block>