You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
600 B
27 lines
600 B
3 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-login',
|
||
|
templateUrl: './login.component.html',
|
||
|
styleUrls: ['./login.component.scss']
|
||
|
})
|
||
|
export class LoginComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
// this.validateForm = this.fb.group({
|
||
|
// userName: [null, [Validators.required]],
|
||
|
// password: [null, [Validators.required]],
|
||
|
// remember: [null],
|
||
|
// autologin: [null],
|
||
|
// });
|
||
|
}
|
||
|
|
||
|
validateForm!: FormGroup;
|
||
|
submitForm() {
|
||
|
|
||
|
}
|
||
|
}
|