#534 login customisation support

This commit is contained in:
Denys Vuika
2016-08-23 16:01:57 +01:00
parent 92fe0f5307
commit f398e4d1f7
5 changed files with 51 additions and 18 deletions

View File

@@ -41,11 +41,15 @@ export class AlfrescoLoginComponent {
isPasswordShow: boolean = false;
@Input()
logoImageUrl: string;
@Input()
providers: string [] ;
@Output()
onSuccess = new EventEmitter();
@Output()
onError = new EventEmitter();
@@ -55,8 +59,7 @@ export class AlfrescoLoginComponent {
formError: { [id: string]: string };
private _message: { [id: string]: { [id: string]: string }
};
private _message: { [id: string]: { [id: string]: string } };
/**
* Constructor
@@ -91,7 +94,6 @@ export class AlfrescoLoginComponent {
translate.addTranslationFolder('node_modules/ng2-alfresco-login/dist/src');
this.form.valueChanges.subscribe(data => this.onValueChanged(data));
}
/**