import { Component } from '@angular/core' import { Router } from '@angular/router' @Component({ selector: 'app-auth-forgot', template: `
Forgot password

Enter your email address and your password will be reset and emailed to you.

Forget it, send me back to the sign in screen.
`, styles: [], }) export class AuthForgotComponent { constructor(private router: Router) {} submit() { this.router.navigate(['/reset-password']) } }