import { Component, OnInit } from '@angular/core'; import { Location } from '@angular/common'; import { Router, ActivatedRoute } from '@angular/router'; import { AuthService } from './../../config/auth.service'; @Component({ selector: 'app-forgot', templateUrl: './forgot.page.html', styleUrls: ['./forgot.page.scss'] }) export class ForgotPage implements OnInit { constructor( private router: Router, private route: ActivatedRoute, private location: Location, public authService: AuthService ) { } ngOnInit() { } goToPage(path, data = null) { this.router.navigateByUrl(path, { queryParams: data }); document.body.scrollTop = document.documentElement.scrollTop = 0; } goBack() { this.router.navigateByUrl('login'); } }