internal async Task AccountDetailsAsync(clsUpdatePassword account)
        {
            string id = await Utilty.GetSecureStorageValueFor(Utilty.UserId);

            int UserId     = Convert.ToInt32(id);
            var Httpclient = new HttpClient();

            var url1 = "http://qepdns.com/api/changepassword.php?user_id=" + UserId + "&new_password="******"&password="******"msg");
                await Application.Current.MainPage.DisplayAlert("", msg, "Ok");
            }
        }
Example #2
0
 public UpdatePasswordVM()
 {
     account = new clsUpdatePassword();
     accountDetailsService = new AccountDetailsService();
 }