summaryrefslogblamecommitdiffstats
path: root/templates/sysconfig/ad-checkconnection.html
blob: e321dc6e53b4079a8c26863cb54bad2ca7ae7b4e (plain) (tree)
1
2
3
4
5
6
   
                               


               
                                                                                                              








                                                                                                            
                                                                  
                                                                                            








                                                                                                      
                                                                  
                                                                                                            














                                                                                      
<p>
	{{lang_connectionWait}}
</p>

<div id="zeug">
	<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=AdModule_Start">
		<input type="hidden" name="token" value="{{token}}">
		<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">
		<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 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">
		<button id="nextbutton" type="submit" class="btn btn-primary">{{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;');
	}
	if (task.statusCode === 'TASK_ERROR' || task.statusCode === 'PARENT_FAILED') {
		$('#nextbutton').html('Trotzdem weiter &raquo;');
	}
}
</script>