mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
<div class="setting">
|
|
<p class="toggle">
|
|
<label for="switch1" class="mdl-switch mdl-js-switch mdl-js-ripple-effect">
|
|
<input type="checkbox" id="switch1" class="mdl-switch__input" checked (click)="toggleECM(ecm.checked)" #ecm>
|
|
<span class="mdl-switch__label">ECM</span>
|
|
</label>
|
|
</p>
|
|
<p class="toggle">
|
|
<label for="switch2" class="mdl-switch mdl-js-switch mdl-js-ripple-effect">
|
|
<input type="checkbox" id="switch2" class="mdl-switch__input" (click)="toggleBPM(bpm.checked)" #bpm>
|
|
<span class="mdl-switch__label">BPM</span>
|
|
</label>
|
|
</p>
|
|
<p class="banned">
|
|
<label for="blacklistusername">Banned username</label><br>
|
|
<input id="blacklistusername" type="text" placeholder="banned username" [(ngModel)]="blackListUsername" />
|
|
</p>
|
|
</div>
|
|
<alfresco-login [providers]="providers" [fieldsValidation]="customValidation"
|
|
(executeSubmit)="validateForm($event)"
|
|
(onSuccess)="onLogin($event)"
|
|
(onError)="onError($event)" #alfrescologin></alfresco-login>
|