Created
August 17, 2019 18:51
-
-
Save onejohi/301142e5881d195ea468b6d69f8a87bd 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: 'app-login', | |
templateUrl: 'app-login.html', | |
styleUrls: ['styles.css'], | |
}) | |
export class AppLogin { | |
constructor() { } | |
navToGoogle() { | |
// simple navigation to google | |
document.location.assign('https://google.com'); | |
} | |
saveUsername(username) { | |
// save username to local storage | |
window.localStorage.setItem('username', username); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment