Skip to content

Instantly share code, notes, and snippets.

@aliomattux
Created January 26, 2021 13:24
Show Gist options
  • Save aliomattux/63df2139d8ec827deb824cbf249569f8 to your computer and use it in GitHub Desktop.
Save aliomattux/63df2139d8ec827deb824cbf249569f8 to your computer and use it in GitHub Desktop.
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