mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
8d8891c5bc
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
25 lines
1,010 B
PHP
25 lines
1,010 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017-2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2013-2017 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
?>
|
|
<div class="ldapWizardControls">
|
|
<span class="ldap_saving hidden"><?php p($l->t('Saving'));?> <img class="wizSpinner" src="<?php p(image_path('core', 'loading.gif')); ?>"/></span>
|
|
<span class="ldap_config_state_indicator"></span> <span class="ldap_config_state_indicator_sign"></span>
|
|
<button class="ldap_action_back invisible" name="ldap_action_back"
|
|
type="button">
|
|
<?php p($l->t('Back'));?>
|
|
</button>
|
|
<button class="ldap_action_continue primary" name="ldap_action_continue" type="button">
|
|
<?php p($l->t('Continue'));?>
|
|
</button>
|
|
<a href="<?php p(link_to_docs('admin-ldap')); ?>"
|
|
target="_blank" rel="noreferrer noopener">
|
|
<img src="<?php print_unescaped(image_path('core', 'actions/info.svg')); ?>"
|
|
style="height:1.75ex" />
|
|
<span class="ldap_grey"><?php p($l->t('Help'));?></span>
|
|
</a>
|
|
</div>
|