Created
January 26, 2021 13:24
-
-
Save aliomattux/63df2139d8ec827deb824cbf249569f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'login', | |
styleUrls: [], | |
templateUrl: './login.component.html', | |
}) | |
export class LoginComponent { | |
login() {}; | |
period: string = 'week'; | |
user: any = ''; | |
email: any = ''; | |
password: any = ''; | |
strategy: string; | |
errors: string[]; | |
messages: string[]; | |
user: any; | |
submitted: boolean; | |
constructor() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment