Guest User

Untitled

a guest
May 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. async submitLogin() {
  2. const mailControl = this.loginForm.controls['mail'];
  3. const passWordControl = this.loginForm.controls['passWord'];
  4. const s = new Login(mailControl.value, passWordControl.value); /*Only a void function can be called with the 'new' keyword*/
  5. console.log(s);
  6. const msgErrors = await s.init(mailControl.value, passWordControl.value);
  7.  
  8. if (msgErrors.errorUserMsg) {
  9. this.msgErrorLogin = msgErrors.errorUserMsg;
  10. }
  11. }
Add Comment
Please, Sign In to add comment