Skip to content

Instantly share code, notes, and snippets.

@onejohi
Created August 17, 2019 18:51
Show Gist options
  • Save onejohi/301142e5881d195ea468b6d69f8a87bd to your computer and use it in GitHub Desktop.
Save onejohi/301142e5881d195ea468b6d69f8a87bd to your computer and use it in GitHub Desktop.
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