summaryrefslogtreecommitdiffstats
path: root/templates/sysconfig/ad-checkcredentials.html
diff options
context:
space:
mode:
authorSimon Rettberg2015-05-04 17:29:28 +0200
committerSimon Rettberg2015-05-04 17:29:28 +0200
commit4fa951a30c9d6375f0f598827ce0b112659c5e24 (patch)
treee5a7c040a66017af80b0d46ce0cfeafed80fd45c /templates/sysconfig/ad-checkcredentials.html
parent[lang/de]: ssh-Konfig: Typo korr. (diff)
downloadslx-admin-4fa951a30c9d6375f0f598827ce0b112659c5e24.tar.gz
slx-admin-4fa951a30c9d6375f0f598827ce0b112659c5e24.tar.xz
slx-admin-4fa951a30c9d6375f0f598827ce0b112659c5e24.zip
Add SSL support to AD wizard
Diffstat (limited to 'templates/sysconfig/ad-checkcredentials.html')
-rw-r--r--templates/sysconfig/ad-checkcredentials.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/templates/sysconfig/ad-checkcredentials.html b/templates/sysconfig/ad-checkcredentials.html
new file mode 100644
index 00000000..e8b472c1
--- /dev/null
+++ b/templates/sysconfig/ad-checkcredentials.html
@@ -0,0 +1,67 @@
+<p>
+ {{lang_connectionWait}}
+</p>
+
+<div id="zeug">
+ <div data-tm-id="{{self-search}}" data-tm-log="messages" data-tm-callback="selfCb">LDAP Self-Query</div>
+ <div data-tm-id="{{tm-search}}" data-tm-log="messages" data-tm-callback="ldapCb">LDAP Test-Query</div>
+</div>
+<br>
+<div class="pull-left">
+ <form role="form" method="post" action="?do=SysConfig&amp;action=addmodule&amp;step=AdAuth_Start">
+ <input type="hidden" name="token" value="{{token}}">
+ <input name="title" value="{{title}}" type="hidden">
+ <input name="server" value="{{server}}" type="hidden">
+ <input name="searchbase" value="{{searchbase}}" type="hidden">
+ <input name="binddn" value="{{binddn}}" type="hidden">
+ <input name="bindpw" value="{{bindpw}}" type="hidden">
+ <input name="home" value="{{home}}" type="hidden">
+ {{#ssl}}
+ <input name="ssl" value="on" type="hidden">
+ {{/ssl}}
+ <button type="submit" class="btn btn-primary">&laquo; {{lang_back}}</button>
+ </form>
+</div>
+<div class="pull-right">
+ <form role="form" method="post" action="?do=SysConfig&amp;action=addmodule&amp;step={{step}}">
+ <input type="hidden" name="token" value="{{token}}">
+ <input type="hidden" name="edit" value="{{edit}}">
+ <input name="title" value="{{title}}" type="hidden">
+ <input name="server" value="{{server}}" type="hidden">
+ <input name="searchbase" value="{{searchbase}}" type="hidden">
+ <input id="setdn" name="binddn" value="{{binddn}}" type="hidden">
+ <input name="bindpw" value="{{bindpw}}" type="hidden">
+ <input name="home" value="{{home}}" type="hidden">
+ {{#ssl}}
+ <input name="ssl" value="on" type="hidden">
+ {{/ssl}}
+ <input name="originalbinddn" value="{{binddn}}" type="hidden">
+ <button id="nextbutton" type="submit" class="btn btn-primary" style="display:none">{{lang_skip}} &raquo;</button>
+ </form>
+</div>
+<script type="text/javascript">
+ function ldapCb(task)
+ {
+ if (!task || !task.statusCode)
+ return;
+ if (task.statusCode === 'TASK_FINISHED') {
+ $('#nextbutton').html('Weiter &raquo;').show();
+ }
+ if (task.statusCode === 'TASK_ERROR' || task.statusCode === 'PARENT_FAILED') {
+ $('#nextbutton').html('Trotzdem weiter &raquo;');
+ }
+ if (task.statusCode === 'TASK_ERROR') {
+ $('#nextbutton').show();
+ }
+ }
+ function selfCb(task)
+ {
+ if (!task || !task.statusCode)
+ return;
+ if (task.statusCode === 'TASK_FINISHED' && task.data && task.data.dn) {
+ $('#setdn').val(task.data.dn);
+ } else {
+ $('#nextbutton').html('Trotzdem weiter &raquo;');
+ }
+ }
+</script>