public void ResendVerificationEmail()
    {
        string ErrorMsg = "";

        if (!loginUserEmailValidator.IsValidCheck())
        {
            ErrorMsg = "Validation resend requires valid E-mail";
        }
        loginErrorLabel.text = ErrorMsg;
        if (string.IsNullOrEmpty(ErrorMsg))
        {
            SwitchToConfirmation();
            CloudGoods.ResendVerificationEmail(loginUserEmail.text, null);
        }
    }