﻿<html>
<head>
<meta http-equiv="Content-Type" content="text/html;" />
<title>UMKC Web Access Logon</title>
<style>
        body {
                color: #111;
                font-family: Verdana,Arial,Helvetica,sans-serif;
                }
        #heading {
                font-size: 24px;
                font-weight: bold;
                margin: 5px;
                margin-left: auto;
                margin-right: auto;
        }
        #desc {
                font-size: 11px;
                margin: 15px;
                text-align: left;
                margin-left: auto;
                margin-right: auto;
        }
        form td, form input {
                font-size: 11px;
                font-weight: bold;
        }
        #formtable {
                height: 100%;
                width: 100%;
        }
        #formtd {
                vertical-align: middle;
        }
        #formdiv {
                margin-left: auto;
                margin-right: auto;
        }
</style>
</head>
<body style="background-color: #3366FF">
<table id="formtable" bgcolor="#FFFFFF">
<tr><td align="center" valign="middle" style="height: 48px">
        <div id="heading">UMKC Web Access Logon</div>
</td></tr>
<tr><td align="center" valign="middle" style="height: 208px" bgcolor="#FFFFEE">
        <div id="desc">Please logon for Internet access.<br>
						<br>
						This web logon helps to ensure that only UMKC Faculty, 
						Staff, Students, and authorized guests use the 
						University Internet resources.<br>
						<br>
						This logon is also for the purpose of enabling Peer to Peer network traffic for users who have otherwise already authenticated to the network.
						<br>
						<br>
You may also get this logon page if you are off campus, and attempting to access certain protected resources.
<BR>
<BR>
						Campus managed Windows computers using UMKC logons will normally automatically 
						logon to web access.&nbsp; If you are using a Campus managed Windows 
						computer that uses UMKC logons, and you reach this logon 
						page on a regular basis, please contact the Call Center 
						for troubleshooting.<br>
						<br>
						<br>
						Logons will typically last up to 24 hours.<br>
						<br>
						For 
						Linux/Unix research machines, we can setup special logon 
						exemptions once you provide us with additional 
						information on your machine. <br>
						<br>
Contractors and others working for the University can obtain temporary guest accounts through the contracting department.<br>
						<br>
						All users of the UMKC campus network need to be aware of 
						our <a href="http://www.umkc.edu/is/policies/copyright/">
						copyright requirements</a>, and aware of the 
						<a href="http://www.umkc.edu/is/policies/">UM 
						Acceptable Use Policy and other IS Policies</a>.<br>
						<br>
						For problems or questions about the Web Access Logon, 
						please contact the Call Center at 816-235-2000 or callcenter@umkc.edu .
<BR>
<BR>
Please logon using your email-form of your username, such as:  username@campus.edu  
</div>
</td></tr>
<tr><td align="center" valign="middle">
<div id="formdiv">
<form name="login_form" id="login_form" method="post">
<input type="hidden" name="inputStr" value="">
<input type="hidden" name="escapeUser" value="">
<input type="hidden" name="preauthid" value="">
<div id="taLogin">
<table>
 <tr id="dUserName">
 <td id="userTitle">User</td>
 <td>
   <input type="text" id="user" name="user" size="19">
 </td>
 </tr>
 <tr>
   <td id="passwdTitle">Password</td>
 <td>
   <div id="dInputStr" style="display: none;">
   <br>
   </div>
  <input type="password" maxlength="255" size="19" id="passwd" name="passwd">
 </td>
 </tr>
 <tr>
  <td id="buttonOffset"></td>
  <td>
   <input class="buttonFixed" type="submit" id="submit" name="ok" value="Login">
  </td>
  </tr>
</table>
</div>
<div id="dError" class="msg" style="display:none"></div>
</form>
<!--[if IE]>
    <script type="text/javascript">
        (function() {
            var baseTag = document.getElementsByTagName('base')[0];
            if (!(/^http/i).test(baseTag.href)) { // in case browser already translate to absolute path
                baseTag.href = location.protocol + '//' +  location.host +  baseTag.href;
            }
            baseTag.href = baseTag.href; // IE9 not correctly loading resources issue.
        })();
    </script>
<![endif]-->
<!--[if lt IE 9]>
      <script src="js/html5shiv.js"></script>
      <script src="js/respond.min.js"></script>
<![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
 var username = "";
 var errMsg = "";
 var respStatus = "";
 var respMsg = "";
 var authEnforcedMsg = " ";
 var privatebrowsing = "";
 function submitClicked() {
  $('#dError').html('');
  $('#dError').hide();
  $('#formdiv').css('visibility', 'hidden');
  var thisForm = document.getElementById('login_form');
  thisForm.inputStr.value = "";
  thisForm.preauthid.value = "";
  thisForm.escapeUser.value = thisForm.user.value.replace(/\\/g, "\\\\");
 }
 function onClickHandler() {
  submitClicked();
 }
 $(document).ready(function() {
   $('#user').val(username);
   if ($('#user').val() == '') {
     $('#user').focus();
   }
   $('#dError').hide();
   if (respStatus == 'Error') {
      if (respMsg != '') {
       errMsg += '<br>';
       errMsg += '<li>' + respMsg + '</li>';
      }
   } else if (respStatus == 'Challenge') {
      $('#dUserName, #passwdTitle, #buttonOffset').hide();
      $('#dInputStr').show();
      $('#dInputStr').html(respMsg);
   }
   if (errMsg != '') {
      $('#dError').show();
      $('#dError').html(errMsg);
   }
    if (privatebrowsing != '') {
      $('#dError').show();
      $('#dError').html(errMsg+ '<br>' + privatebrowsing);
   }
   if (authEnforcedMsg != '') {
      $('#authEnforcedMsg').html(authEnforcedMsg);
   }
   $('#submit').attr('disabled', true);
   $('#user').focus();
   $('#login_form').bind('keyup click', function() {
   if (!$('#user').val() || !$('#passwd').val()) {
       $('#submit').attr('disabled', true);
   } else {
       $('#submit').attr('disabled', false);
       $('#dError').hide();
   }
   });
   $('#login_form').submit(function() {
           submitClicked();
   });
   });
   $(window).bind("pageshow", function(event) {
    if (event.originalEvent.persisted) {
        window.location.reload();
        }
   });
   if(typeof(Storage) != "undefined") {
       var orig_url = "http://dev.umkc.edu/virtualtour/audio/tourcasts.xml";
       try { 
        sessionStorage.setItem ("isoffline", 0); 
        if(orig_url != "")
           sessionStorage.setItem("origurl", orig_url); 
       } catch(e) {
            privatebrowsing = "This page is not compatible in private browsing.                Please turn off private browsing and reload this page";
       }
    }
</script>

</div>
</td></tr>
</table>
</body>
</html>





 