CINXE.COM

AccessPlus Login

<!doctype html> <html> <head> <meta name="keywords" content="AccessPlus, Aplus, A+, Access, Plus, Iowa State University, Iowa, State, University, ISU" /> <meta http-equiv="Pragma" content="no-cache" /> <title>AccessPlus Login</title> <script language="javascript" type="text/javascript"> <!-- Hide script from old browsers function pageLoad() { setFocus(); } function setFocus() { // netid and admsn logins may not have the dspl_ssn field if (document.login.dspl_ssn != null) { document.login.dspl_ssn.focus(); } } function checkFields(source) { var num = document.login.elements.length; var user = ''; // netid and admsn logins may not have the dspl_ssn field if(document.login.dspl_ssn != null){ user = document.login.dspl_ssn.value; } var pass = ''; if(document.login.dspl_pin != null){ pass = document.login.dspl_pin.value; } var validFlag = true; var blankOutField = false; if (source=="2"){ blankOutField = true; } var fieldName = null; var method = getSelectValue(document.login.LMethod); if(method == null) { validFlag = false; alert("The Login Type field is blank. Please select a value."); } var errID = 0; var errPIN = 0; var errPIN2 = 0; var SSNerrorIDstr = "Please enter your Social Security Number (numbers only)."; var UIDerrorIDstr = "Please enter your nine-digit University ID."; var TPAerrorIDstr = "Please enter the eight-digit Third Party Access number you received from the owner of the account you are trying to access.\n\nIf you have additional problems, please contact the account owner."; var TPAerrorIDextra = "If you are trying to log in with a Third Party Access account, please select \"Third Party Access\" as your \"Login Method\"."; var errorPINstr = "Please enter your Password."; var errorPIN2str = "PINs are no longer valid. Please contact the Solution Center to have your password created or reset."; switch(method) { case "ssn": document.login.LoginMethod.value="SOC SEC # "; if(user.length!=9 || isNaN(user)) { if((user.length==9 && user.match(/[Pp]\d{8}/)) || (user.length==8 && (user.match(/\d{8}/)))) { SSNerrorIDstr = SSNerrorIDstr + "\n\n" + TPAerrorIDextra; } errID = 1; } break; case "uid": document.login.LoginMethod.value="UNIV ID "; if(user.length!=9 || isNaN(user)) { if((user.length==9 && user.match(/[Pp]\d{8}/)) || (user.length==8 && (user.match(/\d{8}/)))) { UIDerrorIDstr = UIDerrorIDstr + "\n\n" + TPAerrorIDextra; } errID = 2; } break; case "tpa": document.login.LoginMethod.value="SOC SEC # "; if((!(user.length==8 && user.match(/\d{8}/))) && (!(user.length==9 && user.match(/[Pp]\d{8}/)))) { errID = 3; } else if(user.length==8) { document.login.dspl_ssn.value = "P" + user; } else if(user.length==9) { document.login.dspl_ssn.value = "P" + user.substring(1,9); } break; case "netid": document.login.LoginMethod.value="NETID "; break; case "admsn": document.login.LoginMethod.value="ADMSN "; break; default: break; } // netid and admsn do not require password. other methods do. if (method != "netid" && method != "admsn") { if((pass.length<6 || pass.length>8)){ errPIN = 1; if((pass.length==4)){ errPIN2 = 1; } } } // build error string and make incorrect fields red var errorStr = ""; if(errID==1) { errorStr = SSNerrorIDstr; document.login.dspl_ssn.focus(); document.login.dspl_ssn.style.backgroundColor="#ffcccc"; } if(errID==2) { errorStr = UIDerrorIDstr; document.login.dspl_ssn.focus(); document.login.dspl_ssn.style.backgroundColor="#ffcccc"; } if(errID==3) { errorStr = TPAerrorIDstr; document.login.dspl_ssn.focus(); document.login.dspl_ssn.style.backgroundColor="#ffcccc"; } if(errPIN==1 && errID==0) { errorStr = errorPINstr; document.login.dspl_pin.focus(); document.login.dspl_pin.style.backgroundColor="#ffcccc"; } if(errPIN==1 && errID>0) { errorStr = errorStr + "\n\n" + errorPINstr; document.login.dspl_pin.style.backgroundColor="#ffcccc"; } if(errPIN2==1) { errorStr = errorStr + "\n\n" + errorPIN2str; document.login.dspl_pin.style.backgroundColor="#ffcccc"; } // make correct fields white again if(errID==0 && document.login.dspl_ssn != null) { document.login.dspl_ssn.style.backgroundColor="#ffffff"; } if(errPIN==0 && document.login.dspl_pin != null) { document.login.dspl_pin.style.backgroundColor="#ffffff"; } if(errID+errPIN>0) { alert(errorStr); validFlag = false; } if (validFlag && document.login.dspl_ssn != null) { document.login.pin.value=document.login.dspl_pin.value; document.login.ssn.value=document.login.dspl_ssn.value; if (blankOutField){ document.login.dspl_ssn.value=""; document.login.dspl_pin.value=""; setFocus(); } } return validFlag; } function checkMethod() { var method = getSelectValue(document.login.LMethod); if(method == null) { validFlag = false; alert("The Login Type field is blank. Please select a value."); } if(method == "netid" || method == "admsn") { if (document.getElementById('loginIdLabel')) {document.getElementById('loginIdLabel').style.display = 'none';} if (document.getElementById('loginId')) {document.getElementById('loginId').style.display = 'none';} if (document.getElementById('passwordLabel')) {document.getElementById('passwordLabel').style.display = 'none';} if (document.getElementById('password')) {document.getElementById('password').style.display = 'none';} // The "netid" and "admsn" login methods return back to this login-check.jsp page. document.login.A_Plus_action.value="/frontdoor/login-check.jsp"; } else { if (document.getElementById('loginIdLabel')) {document.getElementById('loginIdLabel').style.display = 'inline';} if (document.getElementById('loginId')) {document.getElementById('loginId').style.display = 'inline';} if (document.getElementById('passwordLabel')) {document.getElementById('passwordLabel').style.display = 'inline';} if (document.getElementById('password')) {document.getElementById('password').style.display = 'inline';} document.login.A_Plus_action.value="/servlet/frontdoorv5.LoginServlet"; } //System.out.println(sysoutPfx + " method=" + method); switch(method) { case "cfr": document.login.A_Plus_action.value="/frontdoor/confirmation.jsp";document.login.submit(); break; default: break; } setFocus(); return true; } function getSelectValue(selectObject) { var value = selectObject.options[selectObject.selectedIndex].value; return value; } function getRadioValue(radioObject) { var value = null ; for (var i=0; i<radioObject.length; i++) { if (radioObject[i].checked) { value = radioObject[i].value; break; } } return value; } function checkCapsLock(e) { var ev = e ? e : window.event; if (!ev) { return; } var targ = ev.target ? ev.target : ev.srcElement; // get key pressed var which = -1; if (ev.which) { which = ev.which; } else if (ev.keyCode) { which = ev.keyCode; } // get shift status var shift_status = false; if (ev.shiftKey) { shift_status = ev.shiftKey; } else if (ev.modifiers) { shift_status = !!(ev.modifiers & 4); } if (((which >= 65 && which <= 90) && !shift_status) || ((which >= 97 && which <= 122) && shift_status)) { // uppercase, no shift key if (document.getElementById('capsLockWarning')) { document.getElementById('capsLockWarning').style.display = 'inline'; } } else { if (document.getElementById('capsLockWarning')) { document.getElementById('capsLockWarning').style.display = 'none'; } } } // DELETE // used to make links to select radio button; now handled by label attributes //function radioSelect(radioObject,selectValue) //{ // var value = null ; // for (var i=0; i<radioObject.length; i++) // { // if (radioObject[i].value==selectValue) // { // radioObject[i].checked=true; // break; // } // } //} // End Hiding Here --> </script> <script type="text/javascript" language="JavaScript1.2" src="https://accessplus.iastate.edu/accessplus/js/accessplus.js"></script> <link rel="stylesheet" href="https://accessplus.iastate.edu/accessplus/css/accessplus.css" type="text/css" /> </head> <body onload="pageLoad();" background="/images/env.gif"> <!--Skip for Frame--> <map name="head" id="head"> <area shape="rect" coords="216,82,252,100" href="/frontdoor/about.jsp" alt="About AccessPlus" /> <area shape="rect" coords="262,82,295,100" href="/frontdoor/demo.jsp" alt="AccessPlus Demo" /> <area shape="rect" coords="306,82,329,100" href="/frontdoor/faq.jsp" alt="AccessPlus FAQ" /> <!--area shape="rect" coords="340,82,383,100" href="mailto:webmaster@www.accessplus.iastate.edu" alt="Contact AccessPlus Webmaster" /--> <area shape="rect" coords="340,82,383,100" href="javascript:openHelpWindow('/frontdoor/emailform.jsp?jspName=login.jsp','430','615');" alt="Contact AccessPlus Webmaster" /> </map> <table width="100%" border="0" cellspacing="6" cellpadding="0"> <tr valign="top"> <td align="right"><a href="http://www.iastate.edu/"><img src="https://accessplus.iastate.edu/accessplus/img/isu.333.gif" width="147" height="11" border="0" alt="Iowa State University" /></a></td> </tr> </table> <!--End Skip for Frame--> <form method="post" name="login" action="/servlet/adp.A_Plus" onsubmit="return checkFields(1)"> <input type="hidden" name="A_Plus_action" value="/frontdoor/login-check.jsp"> <input type="hidden" name="pin" value=""> <input type="hidden" name="ssn" value=""> <input type="hidden" name="LoginMethod" value="NETID "> <input type="hidden" name="require_oidc" value="N"> <table border="0" cellspacing="0" cellpadding="3" align="center"> <!--Skip for Frame--> <tr> <td colspan="2"><img src="https://accessplus.iastate.edu/accessplus/img/spacer.gif" width="600" height="60" border="0" alt="" /><br /><img src="https://accessplus.iastate.edu/accessplus/img/login.head.gif" usemap="#head" width="600" height="100" border="0" alt="Welcome to AccessPlus" /><br /><img src="https://accessplus.iastate.edu/accessplus/img/spacer.gif" width="600" height="18" border="0" alt="" /></td> </tr> <!--End Skip for Frame--> <tr> <td align="right" style="padding-bottom:8px; vertical-align:bottom;"><strong>Login Method:</strong></td> <td> <select name="LMethod" id="LMethod" tabindex="1" onchange="checkMethod();"> <option value="netid" selected >ISU Net-ID</option> <option value="admsn">Admission Account</option> <option value="tpa">Third Party Access</option> <option value="cfr">Confirmation Number</option> <option value="uid">University ID</option> <option value="ssn">Social Security</option> </select> <!--Skip for Frame--> <a href="/frontdoor/faq.jsp#id" tabindex="5"><span class="xxs">Login Method?</span></a> <!--End Skip for Frame--> </td> </tr> <tr> <td></td> <td><div id="uidWarning" style="display:none;background-color:#ffcccc;float:bottom;position:relative;top:10px;padding:3px;"> <b>Note: University ID log in is only allowed when you don't have an ISU Net-ID for log in.</b><br><br></div> <div id="ssnWarning" style="display:none;background-color:#ffcccc;float:bottom;position:relative;top:10px;padding:3px;"> <b>Note: Social Security log in is only allowed when you don't have an ISU Net-ID for log in.</b><br><br></div> </td> </tr> <tr> <td align="right"><div id="loginIdLabel" style="display:none;"><strong>Login ID:</strong></div></td> <td><div id="loginId" style="display:none;"><input type="password" name="dspl_ssn" id="loginid" size="10" maxlength="9" tabindex="2" onkeypress="checkCapsLock(event);"/></div></td> </tr> <tr> <td align="right"><div id="passwordLabel" style="display:none;"><strong>Password:</strong></td> <td><div id="password" style="display:none;"><input type="password" name="dspl_pin" id="pinpass" size="9" maxlength="8" tabindex="3" onkeypress="checkCapsLock(event);"/> <!--Skip for Frame--> <a href="/frontdoor/forgotPassword0.jsp" tabindex="6"><span class="xxs">Forget your password?</span></a></td> <!--End Skip for Frame--> </tr> <tr> <td>&nbsp;</td> <td><input type="submit" name="login" value="Log in" tabindex="4" /></td> </tr> <tr> <td></td> <td> <div id="capsLockWarning" style="background-color:#ffcccc;float:bottom;position:relative;top:10px;display:none;padding:3px;"> <b>Caps Lock is on.</b> </div> </td> </tr> <tr> <td></td> <td> <a href="/frontdoor/faq.jsp#loginproblems" tabindex="7"><span class="s">Need help logging in?</span></a></td> </td> </tr> </table> </form> <noscript> <center> <table cellpadding="0" cellspacing="0" border="0" width="550"> <tr><td width="100%" valign="top" class="PPDesTxt"><b>Are you using a browser that doesn't support JavaScript?</b></td></tr> <tr><td width="100%" valign="top" class="PPDesTxt">If your browser does not support JavaScript, you can upgrade to a supported browser. </td></tr> <tr><td width="100%" valign="top" class="PPDesTxt"><b>Have you disabled JavaScript?</b></td></tr> <tr><td width="100%" valign="top" class="PPDesTxt">If you have disabled JavaScript, you must re-enable JavaScript to use this site. </td></tr> </table> </noscript> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10