CINXE.COM
Sign On
<!DOCTYPE html> <!-- template name: html.form.login.vumc.template.html --> <!-- Configurable default behavior for the Remember Username checkbox --> <!-- set the checkbox to unchecked --> <html lang="en" dir="ltr"> <head> <title>Sign On</title> <base href="https://sso.service.vumc.org/"/> <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_vumc.css"/> </head> <body onload="setFocus()"> <div class="ping-container ping-signin"> <div class="ping-header"> Sign On </div> <!-- .ping-header --> <div class="ping-body-container"> <div class="section-title"> Please sign on and we'll send you right along. </div> <div> <form method="POST" action="/pf/ApMJmDAgnB/resume/pf/adapter2adapter.ping" autocomplete="off"> <div class="ping-messages"> </div> <div class="ping-input-label"> VUMC ID </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="VUMC ID" /><!----> </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> <div> <p class="secure-message"> I am committed to keeping VUMC patient <br/> and confidential information secure</p> <div> <ul class="secure-actions"> <li>Logoff and lockup computer, phone, and tablet when away.</li> <li>Forward any suspicious phishing emails to: <a href="mailto:phishing@vumc.org">phishing@vumc.org</a>.</li> <li>Work with confidential data where others cannot see your screen.</li> </ul> </div> <p class="policy"> Questions? Email: <a href="mailto:Helpdesk@vumc.org">Helpdesk@vumc.org</a> or call 34-3HELP<br/> VUMC Policies:<a href="https://vanderbilt.policytech.com/"><u>Vanderbilt.Policytech.com</u></a> </p> </div> <div class="ping-buttons"> <input type="hidden" name="pf.ok" value=""/> <input type="hidden" name="pf.cancel" value=""/> <a href="javascript:void(0)" onclick="postCancel();" class="ping-button blue deny" title="Cancel"> Cancel </a> <!-- Removed a href in the following 10/27/16 ELB <a href="javascript:void(0)" onclick="postOk();" class="ping-button normal allow" title="Sign On"> Sign On </a> --> <a onclick="postOk();" class="ping-button normal allow" title="Sign On"> Sign On </a> </div><!-- .ping-buttons --> </form> </div><!-- .ping-body --> </div><!-- .ping-body-container --> <div class="ping-footer-container"> <div class="ping-footer"> <div class="ping-credits"/> </div> <!-- .ping-footer --> </div> <!-- .ping-footer-container --> </div><!-- .ping-container --> <script type="text/javascript"> //console.log("html.form.login.template. VUMC"); 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, ''); } <!-- 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 && false; 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>