Commit 43fffe7e authored by Priyanka Vivekanand Upadhye's avatar Priyanka Vivekanand Upadhye
Browse files

Merge branch '67-deactivate-user-api-integration' into 'master'

Validation of Password change

Closes #67

See merge request 92khra1mst/hft_awado_app!60
parents a9efdeae a1680e3c
......@@ -33,8 +33,11 @@ export class ResetPasswordPage implements OnInit {
resetPassword(){
if(this.oldPassword=="" || this.confirmPassword=="" || this.newPassword=="")
this.toastService.showToast("All Feilds are mandatory");
else if(this.newPassword.length < 4)
this.toastService.showToast("Weak Password");
else if(this.confirmPassword!=this.newPassword)
this.toastService.showToast("Please Confirm Password Again");
else{
this.storage.get('token').then((token) => {
let url = 'http://193.196.52.237:8081/password-reset/'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment