Last active
January 21, 2020 01:27
-
-
Save lokcito/aaf3190d9a24bf095d595cf30031be23 to your computer and use it in GitHub Desktop.
servicios angular
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit } from '@angular/core'; | |
import { ViewEncapsulation } from '@angular/core' | |
import { Router, ActivatedRoute } from '@angular/router'; | |
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; | |
import { LoginService } from './login.service'; | |
@Component({ | |
selector: 'app-login', | |
templateUrl: './login.component.html', | |
styleUrls: [ | |
'./../../assets/css/bootstrap.css', | |
'./../../assets/css/animate.css', | |
'./../../assets/css/font-awesome.min.css', | |
'./../../assets/css/font.css', | |
'./../../assets/css/plugin.css', | |
'./../../assets/css/app.css', | |
'./login.component.css'], | |
encapsulation: ViewEncapsulation.None | |
}) | |
export class LoginComponent implements OnInit { | |
returnUrl: string; | |
username: string; | |
password: string; | |
constructor( | |
private route: ActivatedRoute, | |
private loginService: LoginService) { } | |
ngOnInit() { | |
this.returnUrl = this.route.snapshot.queryParams['returnUrl'] || '/'; | |
} | |
onSubmit(event: Event) { | |
event.preventDefault(); // Avoid default action for the submit button of the login form | |
this.loginService. | |
login('[email protected]', 'cityslicka'). | |
subscribe(res => { | |
console.log(res); | |
}); | |
} | |
} | |
// username: string, password: string, | |
// username.value, password.value, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from '@angular/core'; | |
import { HttpClient } from '@angular/common/http'; | |
@Injectable({ | |
providedIn: 'root' | |
}) | |
export class LoginService { | |
constructor(private http: HttpClient) { | |
} | |
login(username:string, password:string) { | |
return this.http.post('https://reqres.in/api/login', { | |
email: username, | |
password: password, | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment