Reset Password
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enter your current password
+
+
+
+
+ Enter your new password
+
+
+
+
+
+ Confirm your new password
+
+
+
+
+
+
+ Reset Password
+
+
+
+
+
+
+
diff --git a/src/app/pages/resetpass/resetpass.page.scss b/src/app/pages/resetpass/resetpass.page.scss
index 1c3cf7a..dc4a5be 100644
--- a/src/app/pages/resetpass/resetpass.page.scss
+++ b/src/app/pages/resetpass/resetpass.page.scss
@@ -347,6 +347,21 @@ ion-content {
}
}
+ ion-item {
+ --background: #f7f7f7;
+ border-radius: 10px;
+ margin-bottom: 24px;
+
+ ion-input {
+ --padding-start: 10px;
+ font-family: "regular";
+ height: 50px;
+ }
+
+ ion-icon {
+ font-size: 22px;
+ }
+ }
.bold_text {
diff --git a/src/app/pages/resetpass/resetpass.page.ts b/src/app/pages/resetpass/resetpass.page.ts
index 89aab48..b6fa78a 100644
--- a/src/app/pages/resetpass/resetpass.page.ts
+++ b/src/app/pages/resetpass/resetpass.page.ts
@@ -1,4 +1,4 @@
-import { Component, OnInit } from '@angular/core';
+import {Component, OnInit, ViewChild} from '@angular/core';
import {NavController} from "@ionic/angular";
import {Router} from "@angular/router";
@@ -9,6 +9,9 @@ import {Router} from "@angular/router";
})
export class ResetpassPage implements OnInit {
+ @ViewChild('curr_pass') curr_pass;
+ @ViewChild('new_pass') new_pass;
+ @ViewChild('confirm_new_pass') confirm_new_pass;
tabs = 'about';
@@ -24,8 +27,8 @@ export class ResetpassPage implements OnInit {
this.navctr.back();
}
- onMentor() {
- this.router.navigate(['mentor']);
+ onResetPass() {
+ // this.router.navigate(['mentor']);
}
onEnroll() {