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

Please enter your new password.

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