aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/login-page/login-page.component.ts
blob: c041003df785fe7dba8dda52995ced604769c76d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { AuthService } from 'src/app/_services/auth.service';
//import { LoginService } from 'src/app/_services/login.service';

@Component({
  selector: 'app-login-page',
  templateUrl: './login-page.component.html',
  styleUrls: ['./login-page.component.css']
})
export class LoginPageComponent implements OnInit {

  public pageLoaded: boolean = false; //ako korisnik ne sme da ima pristup stranici (vec je ulogovan itd), ona ne sme ni da se ucita
  email: string = '';
  password: string = '';

  public wrongCreds: boolean = false;      //RAZMOTRITI
  //public notApproved: boolean = false;     //RAZMOTRITI

  pattEmail: RegExp = /^[a-zA-Z0-9]+([\.\-\+][a-zA-Z0-9]+)*\@([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}$/;

  constructor(
    private activatedRoute: ActivatedRoute,
    private authService: AuthService
    //private loginService: LoginService
  ) { }

  ngOnInit(): void {
    /*this.authService.checkAccess(this.activatedRoute, this,
      (self: any) => self.pageLoaded = true;
      );*/
  }

  onSubmit() {
    //this.wrongCreds = false;      
    //this.notApproved = false;     RAZMOTRITI

    if (this.pattEmail.test(this.email)) {
      //this.loginService.login(this.email, this.password);
    }
    else {
      //this.wrongCreds = true;     
    }
  }

}