rsanchez
2017-03-19 280daa7f3f858ecfef9c91ffd5dea1007f021048
securis/src/main/webapp/src/app/login.form.component.ts
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,7 +1,7 @@
11 import { Http } from '@angular/http';
22 import { Router } from '@angular/router';
33 import { AfterViewInit, Component, Input } from '@angular/core';
4
-import { UserService } from './user.service';
4
+import { UserService } from '../user.service';
55 import { ToastsManager } from 'ng2-toastr/ng2-toastr';
66
77 class LoginData {
....@@ -11,7 +11,7 @@
1111
1212 @Component({
1313 selector: 'login-form',
14
- templateUrl: "src/app/login.form.html"
14
+ templateUrl: "src/app/forms/login.form.html"
1515 })
1616 export class LoginFormComponent implements AfterViewInit {
1717 data = new LoginData();