summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/templates/ldapfilter-add.html
diff options
context:
space:
mode:
authorSimon Rettberg2018-12-12 14:00:35 +0100
committerSimon Rettberg2018-12-12 14:00:35 +0100
commitf14c04f3af8936f07d0efaa292ce0ea92981b1f6 (patch)
treee1275d80fdced4f0b3d652277863150f756785a3 /modules-available/dozmod/templates/ldapfilter-add.html
parent[serversetup-bwlp] Simplify permissions (diff)
parent[dozmod] ldapfilters: Fix list (attr/value) (diff)
downloadslx-admin-f14c04f3af8936f07d0efaa292ce0ea92981b1f6.tar.gz
slx-admin-f14c04f3af8936f07d0efaa292ce0ea92981b1f6.tar.xz
slx-admin-f14c04f3af8936f07d0efaa292ce0ea92981b1f6.zip
Merge branch 'master' into ipxe
Diffstat (limited to 'modules-available/dozmod/templates/ldapfilter-add.html')
-rw-r--r--modules-available/dozmod/templates/ldapfilter-add.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/modules-available/dozmod/templates/ldapfilter-add.html b/modules-available/dozmod/templates/ldapfilter-add.html
new file mode 100644
index 00000000..f66972d1
--- /dev/null
+++ b/modules-available/dozmod/templates/ldapfilter-add.html
@@ -0,0 +1,39 @@
+<h1>{{lang_ldapfilters}}</h1>
+
+<div class="panel panel-default">
+ <div class="panel-heading">
+ {{lang_ldapFilterEdit}}
+ </div>
+ <div class="panel-body">
+
+ <p>{{lang_ldapFilterDescription}}</p>
+ <form method="post" action="?do=dozmod&section=ldapfilters">
+ <input type="hidden" name="token" value="{{token}}">
+ <input type="hidden" id="filterid" name="filterid" value="{{filterid}}">
+
+ <div class="input-group">
+ <label class="input-group-addon" for="filtername">{{lang_ldapFilterName}}</label>
+ <input type="text" name="filtername" id ="filtername" class="form-control" placeholder="" value="{{filtername}}" required>
+ </div>
+ <div class="input-group">
+ <label class="input-group-addon" for="attribute">{{lang_ldapFilterAttribute}}</label>
+ <input type="text" name="attribute" id ="attribute" class="form-control" placeholder="" value="{{filterkey}}" required>
+ </div>
+ <div class="input-group">
+ <label class="input-group-addon" for="value">{{lang_ldapFilterValue}}</label>
+ <input type="text" name="value" id ="value" class="form-control" placeholder="" value="{{filtervalue}}" required>
+ </div>
+
+ <div class="text-right" style="margin-top: 20px;">
+ <a type="button" class="btn btn-default" href="?do=dozmod&section=ldapfilters">{{lang_cancel}}</a>
+ <button class="btn btn-primary" type="submit" name="action" value="saveFilter">
+ <span class="glyphicon glyphicon-floppy-disk"></span>
+ {{lang_save}}
+ </button>
+ </div>
+ </form>
+ </div>
+</div>
+
+<script type="text/javascript">
+</script>