similarity index 90%rename from securis/src/main/webapp/src/app/login.form.component.tsrename to securis/src/main/webapp/src/app/forms/login.form.component.ts| .. | .. |
|---|
| 1 | 1 | import { Http } from '@angular/http'; |
|---|
| 2 | 2 | import { Router } from '@angular/router'; |
|---|
| 3 | 3 | import { AfterViewInit, Component, Input } from '@angular/core'; |
|---|
| 4 | | -import { UserService } from './user.service'; |
|---|
| 4 | +import { UserService } from '../user.service'; |
|---|
| 5 | 5 | import { ToastsManager } from 'ng2-toastr/ng2-toastr'; |
|---|
| 6 | 6 | |
|---|
| 7 | 7 | class LoginData { |
|---|
| .. | .. |
|---|
| 11 | 11 | |
|---|
| 12 | 12 | @Component({ |
|---|
| 13 | 13 | selector: 'login-form', |
|---|
| 14 | | - templateUrl: "src/app/login.form.html" |
|---|
| 14 | + templateUrl: "src/app/forms/login.form.html" |
|---|
| 15 | 15 | }) |
|---|
| 16 | 16 | export class LoginFormComponent implements AfterViewInit { |
|---|
| 17 | 17 | data = new LoginData(); |
|---|