26 lines
625 B
TypeScript
26 lines
625 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { Form, FormBuilder, FormGroup, FormGroupDirective, FormControl, NgForm, Validators } from '@angular/forms';
|
|
import { ErrorStateMatcher } from '@angular/material/core';
|
|
|
|
@Component({
|
|
selector: 'of-pages-auth-signin',
|
|
templateUrl: './signin-page.component.html',
|
|
styleUrls: ['./signin-page.component.scss'],
|
|
})
|
|
export class SigninPageComponent implements OnInit {
|
|
|
|
constructor(
|
|
private router: Router,
|
|
private activatedRoute: ActivatedRoute,
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
initForm() {
|
|
}
|
|
|
|
}
|