November 2019
Beginner
436 pages
8h 52m
English
At this point, you may be wondering why we need a Login dialog in our application. The answer is for application data security. In real life, all data access must be protected, and you are going to enable all kinds of security restrictions when you release your application into production. This is why we need to implement a login dialog and authenticate the session with the remote server.
Follow these steps to build a Login dialog:
ng g component login
// ... import { LoginComponent } from './login/login.component';Read now
Unlock full access