origin-team.myiuhealth.org Open in urlscan Pro
162.1.177.189  Public Scan

Submitted URL: http://origin-team.myiuhealth.org/
Effective URL: https://origin-team.myiuhealth.org/my.policy
Submission: On December 13 via api from US — Scanned from US

Form analysis 1 forms found in the DOM

Name: e1POST

<form class="iu-form" id="auth_form" name="e1" method="post" action="" onsubmit="javascript: return masterSubmit(this);" autocomplete="off">
  <span id="credentials_table">
    <span style="display:none" id="credentials_table_header">MyIUHEALTH TEAM Portal</span>
    <div id="credentials_table_postheader"></div>
    <fieldset class="input-container">
      <label for="input_1" id="label_input_1"><input type="text" placeholder="IU Health Network ID (e.g., jsmith)" name="username" class="iu-input credentials_input_text" value="" id="input_1" autocomplete="off" autocapitalize="off"> </label>
    </fieldset>
    <fieldset class="input-container">
      <label for="input_2" id="label_input_2"><input type="password" placeholder="Password" name="password" class="iu-input credentials_input_password" value="" id="input_2" autocomplete="off" autocapitalize="off"> </label>
    </fieldset>
    <span id="submit_row">
      <span class="credentials_table_unified_cell"><input type="submit" class="credentials_input_submit iu-btn big" value="Logon"></span>
    </span>
    <span id="credentials_table_footer"></span>
    <input type="hidden" name="vhost" value="standard">
    <script language="javascript">
      <!--//
      globalInputs = getFormCompatibility();
      softTokenInput = getSoftTokenInput();
      checkExternalAddCheckbox();
      window.sessionTimeout = new APMSessionTimeout(sessionTimedOut);

      function dontChangePasswordClick() {
        var checkbox = document.getElementById("dont_change_password_checkbox");
        var password = document.getElementById("input_1");
        var verify = document.getElementById("input_2");
        if (checkbox.checked) {
          password.value = "";
          password.disabled = true;
          verify.value = "";
          verify.disabled = true;
        } else {
          password.disabled = false;
          verify.disabled = false;
        }
      }
      var finitvalues = ['', '', '', '', ''];
      var sessionLogonCustomizations = ["", "", "", "", ""];
      var sessionLogonCustomizationPairs = [
        [],
        [],
        [],
        [],
        []
      ];
      for (var i = 0; i < sessionLogonCustomizations.length; i++) {
        var pairs = (sessionLogonCustomizations[i].indexOf(";") == -1 ? [sessionLogonCustomizations[i]] : sessionLogonCustomizations[i].trim().split(";"));
        for (var j = 0; j < pairs.length; j++) {
          if (pairs[j].indexOf("=>") != -1) {
            var pair = pairs[j].split("=>");
            sessionLogonCustomizationPairs[i][pair[0]] = pair[1];
          }
        }
      }
      var sessionLogonValuesets = ["", "", "", "", ""];
      for (var i = 0; i < sessionLogonValuesets.length; i++) {
        var inpx = document.getElementById("input_" + (i + 1));
        if (inpx !== null && inpx.tagName.toUpperCase() == "SELECT") {
          if (sessionLogonValuesets[i].trim() != "") {
            inpx.options.length = 0;
            var options = sessionLogonValuesets[i].trim().split(";");
            for (var j = 0; j < options.length; j++) {
              inpx.options.add(new Option(options[j], options[j]));
            }
          }
          if (sessionLogonCustomizations[i].trim() != "") {
            for (var j = 0; j < inpx.options.length; j++) {
              if (typeof sessionLogonCustomizationPairs[i][inpx.options[j].value] != "undefined") {
                inpx.options[j].text = sessionLogonCustomizationPairs[i][inpx.options[j].value];
              }
            }
          }
          // set value
          for (var j = 0; j < inpx.options.length; j++) {
            if (inpx.options[j].value == finitvalues[i]) {
              inpx.value = finitvalues[i];
              break;
            }
          }
        } else if (document.getElementById("input_" + (i + 1) + "_0")) { // RADIO
          var initValue = finitvalues[i];
          var radio = null;
          var name = document.getElementById("input_" + (i + 1) + "_0").name;
          if (sessionLogonValuesets[i].trim() != "") {
            var parent = document.getElementById("label_input_" + (i + 1)).parentNode;
            while (parent.childNodes.length > 1) {
              parent.removeChild(parent.lastChild);
            }
            var options = sessionLogonValuesets[i].trim().split(";");
            for (var j = 0; j < options.length; j++) {
              var div = parent.appendChild(document.createElement("div"));
              var elmdef = document.all && navigator.userAgent.match(/MSIE (\d+)/)[1] < 9 ? "<input type='radio'>" : "input";
              var input = div.appendChild(document.createElement(elmdef));
              if (input.type != 'radio') {
                input.type = 'radio';
              }
              input.id = "input_" + (i + 1) + "_" + j;
              input.name = "name";
              input.value = options[j];
              var label = div.appendChild(document.createElement("label"));
              label.htmlFor = input.id;
              label.id = "label_" + input.id;
              label.className = "radio-label";
              label.style.display = "inline";
              label.innerHTML = options[j];
            }
          }
          if (sessionLogonCustomizations[i].trim() != "") {
            var j = 0;
            while ((radio = document.getElementById("input_" + (i + 1) + "_" + j++)) !== null) { // what number
              if (typeof sessionLogonCustomizationPairs[i][radio.value] != "undefined") {
                document.getElementById("label_input_" + (i + 1) + "_" + (j - 1)).innerHTML = sessionLogonCustomizationPairs[i][radio.value];
              }
            }
          }
          var anyChecked = false,
            j = 0;
          while (initValue != "" && (radio = document.getElementById("input_" + (i + 1) + "_" + j++)) !== null) {
            radio.checked = (radio.value == initValue);
            if (radio.checked) {
              anyChecked = true;
            }
          }
          if (!anyChecked && (radio = document.getElementById("input_" + (i + 1) + "_" + 0)) !== null) {
            radio.checked = true;
          }
        } else if (inpx !== null && inpx.tagName.toUpperCase() == "INPUT" && inpx.type.toUpperCase() == "CHECKBOX") {
          if (inpx.disabled && finitvalues[i] != "") {
            inpx.checked = true;
          } else if (!inpx.disabled && inpx.value == "") {
            inpx.value = "1";
          }
        }
      }
      -->
    </script>
    <div style="clear:both;"></div>
  </span>
</form>

Text Content

JavaScript is not enabled. Please enable JavaScript in your browser or contact
your system administrator for assistance.
To open a new session, please click here.


MY IU HEALTH TEAM PORTAL

--------------------------------------------------------------------------------


SIGN IN TO YOUR ACCOUNT

MyIUHEALTH TEAM Portal





You must have an IU Health Active Directory account to access this site (login
credentials used for IU Health computers and Outlook). Remote access also
requires multi-factor authentication. Use the links below to reset your password
or setup multi-factor authentication:

Click here to register for Duo
Questions on Duo, or how to enroll? Click here for the documentation!


Contact Service Desk


888.760.0035


Legal Notices Privacy Policy



© 2018 Indiana University Health

Legal Notices