participant.wageworks.com Open in urlscan Pro
69.89.50.205  Public Scan

Submitted URL: https://participant.wageworks.com/Dashboard/index.aspx
Effective URL: https://participant.wageworks.com/home.aspx?ReturnUrl=%2FDashboard%2Findex.aspx
Submission: On December 07 via manual from IN — Scanned from DE

Form analysis 1 forms found in the DOM

POST ./home.aspx?ReturnUrl=%2FDashboard%2Findex.aspx

<form method="post" action="./home.aspx?ReturnUrl=%2FDashboard%2Findex.aspx" id="ctl01" autocomplete="off">
  <div class="aspNetHidden">
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
      value="aG+jaMmiWi4pXHAs3ZMI1j3CaBa9NsJ5OSse7zLtNjs5xL1ii7/ku/sEoLOyazL4MBYrGXIbc/SNHhjRASqIcr1pZSeu8G9JKW6ftA1pA/cbrldZfeC0kAzYBz3sTICGLmrgd4Ot3TLsuqhRhRJ7zn+ZSB6ysBeSQVy+kXjlKZlCYJChWiOFQ4/eP4tlYsPaQ3BAI/D3BSLdxGo9d/wJRgxDmjTq9Ojpl7ZQbfbI3ogwP3twUwWQ3HGEAOomU3nJhe4sedxub1/NpYQTW7yEhjB5O2u2Z8aJodJKH4kLBdEox9N9SYSDipEniEUea3mCbEioN6zOCqHhXjgVI2JFWWdSnhbz4QhRja1JPZcRcbF3arvZFJrhF3JxhJ63R9Ebqb8nn6nuhwUmAgeu9tmyGP0a0igI6GksWRFA+VbbwvyQeXZNcg2MQFHxs1D1MDJ6K1o21QSR0q5QZPS2zbN67v3SKDIkGX+ye6P6FW/2lnT4pv6HE/1z3SQMokUlP7Yzy7R1x/55AAleMtsDKaBmldq6BKGR/Y9Km3gU5Xujratq7El+fcU9l2RcEKoiQT+A4DaSoAAvSJIBjss0YFHiutWENwkVfeBSxoMBtqVuHIYPbJvqjh4gNWk/EXTU8acN9PyMu42jgp6IIWIb+lKAglZrg9IwV8GBXBvVO3dd2qSMoFOUuqC34Jsn7hD2zLn3ttMSHuK7DH/ISEe8ml/aWqyc+AXYLQUNxSPtYjCOC7walfHQbvH8HIid323rl43/seT9md2nA/Wkkffc9JnO18GmpcaLQzZIwsWVxtpEYnrmPhjkAEMO/Doa1+yo3tUBhblfvFzBGOyWgRsd1E7GL/vdVhK695IAd60Sy4mYtUsUZaWr7LStUFdttJ5Y4PaI4ksZY1YAZuwGwEiwdatqTSuAZ+9DWxmBsflPVz2J/HS/0q9Edja5BAQKgVLQ7mDyvxhYzNPKX3krnioa7OUBM8AobBKwVMjBMUxilW5U1V2etgnSEeb2qtnBauHIx97P+/KRyY9WShmY4dNefkgtUJCruXncGfnx2xD7RSbcHKY/917RkuK2v8DCQs1U2D7zIP9y8m7m2f92bNVhRR0wJr6eFKR2S4RoG1tWMcNMhED6AzxzbC5kZ7aVk2xTvEKx+3CXsje5CTPxJic/RacgUdkGmA8VmeA/se/T92KUVT9xAiWh2aeYoDa3/ZZtCLINZaY1YeKX2GWgnAx+huQnsAWXoEGiCAafj8Mk7zi3KONSd8xlfC88CqWT4valZqieKqDgM2LzVMH3Cu/DMIEc++oRYtNWHjvq1rNJT+KZY1I59AKk7QVCIic5ySVRwTFK7h45UzWvQsdeyVYKraeYGQ==">
  </div>
  <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['ctl01'];
    if (!theForm) {
      theForm = document.ctl01;
    }

    function __doPostBack(eventTarget, eventArgument) {
      if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
      }
    }
    //]]>
  </script>
  <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZAosjf4Zxs9eW2geNRAKCxbwRlF6PVhpv9bNSsrO0kdYcaK6Jdqi6BCP3Y77CW14JA2&amp;t=637453888754849868" type="text/javascript"></script>
  <script language="javascript" type="text/javascript">
    //<![CDATA[
    //Encode the charaters to numeric format string except alpha-numeric. 
    function HtmlEncode(html) {
      var i, c;
      var result = '';
      for (i = 0; i < html.length; i++) {
        //Get ASCII code
        c = html.charCodeAt(i);
        //Encode one by one. 
        //The code are numbers between 48 and 57. The code are uppercase letters between 65 and 90.
        //The code are lowercase letters between 97 and 122. 
        if ((c >= 48 && c <= 57) || (c >= 65 && c <= 90) || (c >= 97 && c <= 122)) {
          //If it is a number, uppercase or lowercase letter, add directly
          result += html.charAt(i);
        } else {
          //Else if not alpha-numeric, convert to a format like &#ASCII (i.e: &#123;);
          result += '&#' + c + ';';
        }
      }
      return result;
    }
    //Decode the characters to numeric format string except alpha-numeric.
    function HtmlDecode(html) {
      var pattern = /&#(\d+);/;
      var charNumeric = html.match(pattern);
      //Check whether html is matched.
      while (charNumeric != null && typeof(charNumeric) == 'object' && charNumeric.length != null) {
        //Repalce the numeric format string to characters.
        html = html.replace(charNumeric[0], String.fromCharCode(charNumeric[1]));
        charNumeric = html.match(pattern);
      }
      return html;
    }
    //Decode all the inputs in current document
    function DecodeAllInput() {
      //Check all of the inputs
      var inputs = document.getElementsByTagName('input');
      //Use to memorize the original max length of the text
      var maxLength = 0;
      for (i = 0; i < inputs.length; i++) {
        if (inputs[i].type == 'text') {
          //Memorize the max length first, because encoding lengthen the text
          //In Firefox, maxLength is -1, other are undefined 
          if (inputs[i].maxLength != undefined && inputs[i].maxLength != -1) {
            maxLength = inputs[i].maxLength;
            //Lengthen 10 time, since a char could be encoded to '&#xxx;' and then to '&amp;#xxx;' by the internet browser
            inputs[i].maxLength = maxLength * 10;
          }
          //Decoding for all of the textbox
          inputs[i].value = HtmlDecode(inputs[i].value);
          //Reset the max length. 
          //In Firefox, maxLength is -1, other are undefined 
          if (inputs[i].maxLength != undefined && inputs[i].maxLength != -1) inputs[i].maxLength = maxLength;
        }
      }
      //Check all of the textarea
      var textareas = document.getElementsByTagName('textarea');
      for (i = 0; i < textareas.length; i++) {
        //Memorize the max length first, because encoding lengthen the text
        //In Firefox, maxLength is -1, other are undefined 
        if (textareas[i].maxLength != undefined && textareas[i].maxLength != -1) {
          maxLength = textareas[i].maxLength;
          //Lengthen 10 time, since a char could be encoded to '&#xxx;' and then to '&amp;#xxx;' by the internet browser
          textareas[i].maxLength = maxLength * 10;
        }
        //Decoding for all of the textbox
        textareas[i].value = HtmlDecode(textareas[i].value);
        //Reset max length
        //In Firefox, maxLength is -1, other are undefined 
        if (textareas[i].maxLength != undefined && textareas[i].maxLength != -1) textareas[i].maxLength = maxLength;
      }
    }
    //]]>
  </script>
  <div class="aspNetHidden">
    <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="8D0E13E6">
    <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="">
    <input type="hidden" name="__PREVIOUSPAGE" id="__PREVIOUSPAGE" value="3Fd_wP5LZV3zSiie6SFBbUW5UIPwa6jH4p90hdTChslrxfZ96rxprf84KhnoYInA_vBSaxIHcTbtDZLfzPc4_A2">
    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
      value="7ieMG0sGpnZf0+V5EGUya3Ytoyl8JXObxCbaXyxR8skkiZNJ6OvlDgmqeeauqoMttOKGwz1/jzpjLNMtWisyXNWYudazoaCOCJyEuEZgkuPZ0MBrlws+ot/07By1kQGR9zWqXb9rhnHaw/IN1Oms9WkrRQnDbasUU7sx9PcDaBOZOLb77ZngVZCzSdc6TbMQ">
  </div>
  <div class="login-box login-box--home">
    <div class="logo-holder">
      <div id="logoHolderh1" class="aligncenter">
        <img src="https://cfmsfilesvc.viewyourbenefits.com/file/9958.gif" class="image-alt-blank" alt="HealthEquity">
      </div>
    </div>
    <div id="pnlHeaderRegister">
      <div class="heading-holder">
        <h1>PARTICIPANT SITE</h1>
      </div>
      <br>
      <div>
        <ul class="login-nav">
          <li>
            <a id="lnkSignUp" class="inverted-link" alt="Register" href="Account/FirstTimeUserRegistration/Instructions.aspx?SelfIDMode=SignUp&amp;ERID=0">Register</a>
          </li>
          <li>
            <a id="lnkForgot" class="inverted-link" alt="Forgot Username or Password" href="Account/FirstTimeUserRegistration/Instructions.aspx?SelfIDMode=Forgot&amp;ERID=0">Forgot</a>
          </li>
        </ul>
      </div>
    </div>
    <div class="login-form">
      <div id="pnlMessage" class="box hidden">
        <span id="lblMessage"></span>
        <input type="hidden" name="LRHiddenField" id="LRHiddenField">
      </div>
      <div id="divLogin" class="row-holder">
        <div class="row">
          <label for="txtUserName" class="label--login">Username<br>
            <span class="label--sub">Name selected when you registered. (Not email address.)</span>
          </label>
          <div class="text">
            <input name="txtUserName" type="text" maxlength="40" id="txtUserName" class="clsLoginFormInput default">
          </div>
        </div>
        <div class="row">
          <label for="txtPassword" class="label--login">Password</label>
          <div class="text">
            <input name="txtPassword" type="password" maxlength="20" id="txtPassword" class="clsLoginFormInput default">
          </div>
        </div>
      </div>
      <div class="row-holder login-button-holder">
        <input type="submit" name="btnLinkbutton" value="Log In"
          onclick="Login_Clicked();WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;btnLinkbutton&quot;, &quot;&quot;, false, &quot;&quot;, &quot;Login/SignOn&quot;, false, false))" id="btnLinkbutton"
          class="rph-gradient-general gen-21pt rph-label-color-general gen-align-center rph-gradient rph-login-button svg-shadow" onload="VectorAssets.LoginButton(div, 'Log In');">
      </div>
    </div>
  </div>
  <div id="pnlPrivacy">
    <div class="login-box ua-container">
      <div class="login-nav">
        <a href="https://wageworks.com/terms-of-use" class="inverted-link first-lnk" target="_blank">Terms of Use (PDF)<span class="sr-only">, opens in new window</span></a>
        <a href="https://wageworks.com/privacy-policy" class="inverted-link second-lnk" target="_blank">Privacy Policy (PDF)<span class="sr-only">, opens in new window</span></a>
        <a href="https://wageworks.com/CA-privacy-rights" class="inverted-link third-lnk" target="_blank">CA Privacy Rights (PDF)<span class="sr-only">, opens in new window</span></a>
      </div>
    </div>
  </div>
  <div id="serverAlertOverlay">
    <div id="serverAlert">
      <div class="alert-popup"></div>
    </div>
  </div>
  <script type="text/javascript">
    //<![CDATA[
    DecodeAllInput(); //]]>
  </script>
  <script type="text/javascript">
    //Google Analytics tracking  functions
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-17812413-7']);
    _gaq.push(['_trackPageview']);
    (function() {
      var ga = document.createElement('script');
      ga.type = 'text/javascript';
      ga.async = true;
      ga.src = 'https://www.google-analytics.com/ga.js';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(ga, s);
    })();
  </script>
</form>

Text Content

PARTICIPANT SITE


 * Register
 * Forgot

Username
Name selected when you registered. (Not email address.)

Password


Terms of Use (PDF), opens in new window Privacy Policy (PDF), opens in new
window CA Privacy Rights (PDF), opens in new window