Example #1
0
 public void ChangeEmail_Confirm_BTN_Click()
 {
     if (UserUtilities.IsAnEMail(ProfileChange_INPT_Box.New_INPT.text))
     {
         UserUtilities.ChangeEmail(ProfileChange_INPT_Box.New_INPT.text);
         ProfileChange_INPT_Box_Click();
         Profile_PNL.UpdateProfile();
     }
     else
     {
         DisplayNotification(true, "Not a valid Email format");
     }
 }