CINXE.COM
ORNL Collaboration Login
<!DOCTYPE html> <!-- template name: html.form.login.template.scams.html --> <!-- Testing: message key prefix: html.form.login.template.xcams. --> <!-- Configurable default behavior for the Remember Username checkbox --> <!-- set the checkbox to unchecked --> <html lang="en" dir="ltr"> <head> <meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> <!-- BEW 2015-09-04 needed to fix the form for IE in compatibility mode --> <title>ORNL Collaboration Login</title> <base href="https://extidp.ornl.gov/"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/> <link rel="stylesheet" type="text/css" href="assets/css/main.css"/> <link rel="stylesheet" type="text/css" href="assets/css/ornl.css"/> <link rel="stylesheet" type="text/css" href="assets/css/font-awesome.min.css"/> <link rel="icon" type="image/png" href="assets/images/favicon.ico"/> </head> <body onload="setFocus()"> <div class="options"> <div class="ping-container ping-signin"> <div class="ping-header" style="background:blue;"> ORNL Collaboration Login </div> <!-- .ping-header --> <div class="ping-body-container"> <div class="section-title"> Sign in with your ORNL Collaboration Username and Password<br/> </div> <div> <form method="POST" action="/idp/PrYBe/resumeSAML20/idp/SSO.ping" autocomplete="off"> <div class="ping-messages"> </div> <div class="ping-input-container"> <input id="username" type="text" size="36" name="pf.username" value="" autocorrect="off" autocapitalize="off" onKeyPress="return postOnReturn(event)" placeholder="ORNL Username" /><!----> </div> <!--<div class="ping-input-label"> Password </div>--> <div class="ping-input-container"> <input id="password" type="password" size="36" name="pf.pass" onKeyPress="return postOnReturn(event)" placeholder="Password" /> </div> <label class="remember-username"> <div class="ping-checkbox-container"> <input id="rememberUsername" type="checkbox" name="pf.rememberUsername" /> Remember my Username </div> </label> <div class="ping-buttons"> <input type="hidden" name="pf.ok" value=""/> <input type="hidden" name="pf.cancel" value=""/> <!--<a onclick="postCancel();" class="ping-button blue deny" title="Cancel"> Cancel </a>--> <a onclick="postOk();" class="ping-button normal allow" style="background:blue; border:blue;" title="Sign In"> Sign In </a> </div><!-- .ping-buttons --> </form> </div><!-- .ping-body --> </div><!-- .ping-body-container --> </div><!-- .ping-container --> <div class="ping-column-2"> <div class="ping-header" style="background:blue;"> Resources </div> <div> <ul class="option-list"> <li><a target="_blank" href="https://xcams.ornl.gov/xcams/regStep1.shtml"><i class="fa fa-pencil-square-o"></i>Need an Account?</a></li> <li><a target="_blank" href="https://xcams.ornl.gov/xcams/funStep1.shtml" ><i class="fa fa-user"></i>Forgot your username?</a></li> <li><a target="_blank" href="https://xcams.ornl.gov/xcams/fpwStep1.shtml" ><i class="fa fa-lock"></i>Forgot your password?</a></li> </ul> </div> </div> <!-- ping-column-2 --> <div class="ping-footer-container"> <div class="ornl-footer"> <div class="ping-credits"> <a href="https://www.ornl.gov">ORNL</a> </div> <div class="ornl-security-notice"> <a href="https://www.ornl.gov/ornl/contact-us/Security--Privacy-Notice" target="_blank">Security Notice</a> </div> </div> </div> <!-- .ping-footer-container --> </div> <!-- options --> <script type="text/javascript"> function postOk() { document.forms[0]['pf.ok'].value = 'clicked'; document.forms[0].submit(); } function postCancel() { document.forms[0]['pf.cancel'].value = 'clicked'; document.forms[0].submit(); } function postOnReturn(e) { var keycode; if (window.event) keycode = window.event.keyCode; else if (e) keycode = e.which; else return true; if (keycode == 13) { document.forms[0].submit(); return false; } else { return true; } } function setFocus() { var platform = navigator.platform; if(platform != null && platform.indexOf("iPhone") == -1) { document.getElementById('username').focus(); } } function setMobile(mobile) { var className = ' mobile', hasClass = (bodyTag.className.indexOf(className) !== -1); if(mobile && !hasClass) { bodyTag.className += className; } else if (!mobile && hasClass) { bodyTag.className = bodyTag.className.replace(className, ''); } checkbox.checked = mobile || remember; <!-- Check if this is the PingOne Mobile App --> } function getScreenWidth() { return (window.outerHeight) ? window.outerWidth : document.body.clientWidth; } var bodyTag = document.getElementsByTagName('body')[0], width = getScreenWidth(), remember = false && true; var checkbox = document.getElementById('rememberUsername'); if(/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) { setMobile(true); } else { setMobile((width <= 480)); window.onresize = function() { width = getScreenWidth(); setMobile((width <= 480)); } } </script> </body> </html>