blob: 4db7ea2ed6c8c6b2f66295e1a5ce552287549b3e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {Component, EventEmitter, OnInit, Output} from '@angular/core';
import {FormControl, FormGroup, Validators} from '@angular/forms';
@Component({
selector: 'app-login-form',
templateUrl: './login-form.component.html',
styleUrls: ['./login-form.component.scss']
})
export class LoginFormComponent implements OnInit {
@Output() sendLoginForm = new EventEmitter<void>();
public form: FormGroup;
public flatlogicEmail = 'az@huawei.com';
public flatlogicPassword = 'admin';
public ngOnInit(): void {
this.form = new FormGroup({
email: new FormControl(this.flatlogicEmail, [Validators.required, Validators.email]),
password: new FormControl(this.flatlogicPassword, [Validators.required])
});
}
public login(): void {
if (this.form.valid) {
this.sendLoginForm.emit();
}
}
}