Skip to content

Commit

Permalink
Step 22.9: Create mobile version of Login component
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 27, 2016
1 parent cca9835 commit a4dcfb9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions client/imports/app/auth/login.component.mobile.ts
@@ -0,0 +1,17 @@
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { Router } from '@angular/router';

import template from './login.component.mobile.html';

@Component({
selector: 'login',
template
})
export class MobileLoginComponent implements OnInit {
error: string = '';

constructor(private router: Router, private formBuilder: FormBuilder) {}

ngOnInit() {}
}

0 comments on commit a4dcfb9

Please sign in to comment.