1.1.2 • Published 7 years ago

ng2-login v1.1.2

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

ng2-login

This module let you scaffold the login component with UI and authenticate the API using token base authentication.

Install

$ npm install ng2-login $ ng2-login

Usage

import { LoginComponent } from './modules/login/login.component';
import { LoginService } from './modules/login/login.service';
...
@NgModule({
 ...
   declarations: [
        LoginComponent,
        ...
    ],
    providers: [
        LoginService
        ...
   ]
 ...
})
export class AppModule {}