Modified search, agenda, dg, and event view

This commit is contained in:
Tiago Kayaya
2020-08-11 04:11:42 +01:00
parent b749731571
commit 03396567df
40 changed files with 575 additions and 89 deletions
+9 -1
View File
@@ -3,6 +3,7 @@ import { Router } from '@angular/router';
import { AuthService } from 'src/app/services/auth.service';
import { StorageService } from 'src/app/services/storage.service';
import { AuthConnstants } from 'src/app/config/auth-constants';
import { ToastController } from '@ionic/angular';
@Component({
selector: 'app-login',
@@ -18,7 +19,12 @@ export class LoginPage implements OnInit {
domainName: ''
}
constructor(private router: Router, private authService: AuthService, private storageService: StorageService) { }
constructor(
private router: Router,
private authService: AuthService,
private storageService: StorageService,
toastController: ToastController
) { }
ngOnInit() {
}
@@ -83,6 +89,8 @@ export class LoginPage implements OnInit {
}
else{
console.log("Preencha todos campos");
}
}