Pedning interest page

This commit is contained in:
CHIEFSOFT\ameye
2023-08-18 11:13:30 -04:00
parent db3d945366
commit 1b17c4060a
11 changed files with 1409 additions and 6 deletions
+21 -1
View File
@@ -1,4 +1,6 @@
import { Component, OnInit } from '@angular/core';
import {NavController} from "@ionic/angular";
import {Router} from "@angular/router";
@Component({
selector: 'app-resetpass',
@@ -7,9 +9,27 @@ import { Component, OnInit } from '@angular/core';
})
export class ResetpassPage implements OnInit {
constructor() { }
tabs = 'about';
constructor(
private navctr: NavController,
private router: Router
) { }
ngOnInit() {
}
onBack() {
this.navctr.back();
}
onMentor() {
this.router.navigate(['mentor']);
}
onEnroll() {
this.router.navigate(['enroll']);
}
}