salix/modules/account/front/ldap/index.html

67 lines
1.9 KiB
HTML
Raw Normal View History

2020-10-31 21:56:02 +00:00
<vn-watcher
vn-id="watcher"
url="LdapConfigs"
data="$ctrl.config"
id-value="1"
form="form">
</vn-watcher>
<form
name="form"
ng-submit="watcher.submit()"
class="vn-w-md">
2020-11-07 20:05:14 +00:00
<vn-card class="vn-pa-lg" vn-focus>
2020-10-31 21:56:02 +00:00
<vn-vertical>
2020-11-02 18:58:07 +00:00
<vn-check
label="Enable synchronization"
ng-model="watcher.hasData">
</vn-check>
</vn-vertical>
<vn-vertical
ng-if="watcher.hasData"
class="vn-mt-md">
2020-10-31 21:56:02 +00:00
<vn-textfield
2020-11-02 18:58:07 +00:00
label="Server"
ng-model="$ctrl.config.server"
2020-11-07 20:05:14 +00:00
rule="LdapConfig">
2020-10-31 21:56:02 +00:00
</vn-textfield>
<vn-textfield
label="RDN"
ng-model="$ctrl.config.rdn"
rule="LdapConfig">
</vn-textfield>
<vn-textfield
label="Password"
ng-model="$ctrl.config.password"
type="password"
rule="LdapConfig">
</vn-textfield>
<vn-textfield
2020-11-02 18:58:07 +00:00
label="User DN"
ng-model="$ctrl.config.userDn"
2020-10-31 21:56:02 +00:00
rule="LdapConfig">
</vn-textfield>
<vn-textfield
label="Group DN"
ng-model="$ctrl.config.groupDn"
rule="LdapConfig">
</vn-textfield>
</vn-vertical>
</vn-card>
<vn-button-bar>
2020-12-16 10:07:06 +00:00
<vn-submit
disabled="!watcher.dataChanged()"
label="Save">
</vn-submit>
<vn-button
label="Test connection"
ng-click="$ctrl.onTestConection()">
</vn-button>
2020-10-31 21:56:02 +00:00
<vn-button
2020-12-16 10:07:06 +00:00
class="cancel"
2020-10-31 21:56:02 +00:00
label="Undo changes"
2020-12-16 10:07:06 +00:00
disabled="!watcher.dataChanged()"
2020-10-31 21:56:02 +00:00
ng-click="watcher.loadOriginalData()">
</vn-button>
</vn-button-bar>
</form>