home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / iPhone / clockinout.aspx next >
Text File  |  2011-03-06  |  4KB  |  69 lines

  1. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="clockinout.aspx.vb" Inherits="iPhoneNet_Default" %>
  2. <%
  3.     If Session("TFProduction_Status_UserID") = "" Then
  4.         Response.Redirect("login.aspx")
  5.     End If
  6. %>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8.  
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head runat="server">
  11. <meta content="yes" name="apple-mobile-web-app-capable" />
  12. <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type" />
  13. <link href="thumbs/homescreen.png" rel="apple-touch-icon" />
  14. <meta content="minimum-scale=1.0, width=device-width, maximum-scale=0.6667, user-scalable=no" name="viewport" />
  15. <link href="css/style.css" rel="stylesheet" type="text/css" />
  16. <script src="javascript/functions.js" type="text/javascript"></script>
  17. <script type="text/javascript" src="javascript/cvi_busy_lib.js"></script>
  18. <script type="text/javascript" charset="utf-8">
  19.     var xval, tval, bval, rval, lval;
  20.     function block_viewport() {
  21.         xval = getBusyOverlay('viewport', { color: 'blue', opacity: 0.75, text: 'viewport: loading...', style: 'text-shadow: 0 0 3px black;font-weight:bold;font-size:16px;color:white' }, { color: '#ff0', size: 32, type: 'o' });
  22.         if (xval) {
  23.             var c = 0, t = 100;
  24.             xval.ntime = window.setInterval(function () {
  25.                 xval.settext('viewport: loading...' + c + '%'); c++;
  26.                 if (c > t) { window.clearInterval(xval.ntime); xval.remove(); }
  27.             }, 50);
  28.         }
  29.     }
  30. </script>
  31.     <title>PSS Mobile</title>
  32. </head>
  33. <body>
  34.  
  35. <div id="topbar">
  36.     <div id="leftnav" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  37.         <a href="default.aspx"><img alt="home" src="images/home.png" /></a>
  38.     </div>
  39.     <div id="title">
  40.         <%= session("TFProduction_Status_UserID") %>
  41.     </div>
  42. </div>
  43.  
  44. <div id="vp">
  45.  
  46. <div id="content">
  47. <% If Session("tmpMessage") <> "" then %>
  48.     <asp:Label ID="lblMessage" runat="server"></asp:Label>
  49. <% End if %>
  50.  
  51.     <span class="graytitle">Today's Scheduled Events</span>
  52.     <ul class="pageitem" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  53.         <asp:Label ID="lblDetail" runat="server" Text=""></asp:Label>
  54.     </ul>
  55.     <ul class="pageitem" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  56.     <li class="header"><a href="unshift.aspx">Clock In for an Unscheduled Shift</a></li>
  57.     </ul>
  58. </div>
  59.  
  60. <div id="footer" onclick="try {lval.remove(); lval='';}catch(e) {lval=getBusyOverlay(document.getElementById('vp'),{color:'black', opacity:0.5, text:'loading', style:'text-decoration:blink;font-weight:bold;font-size:12px;color:white'},{color:'#fff', size:128, type:'o'});}">
  61.     <img alt="Trinity Fellowship Church" src="images/tree.png" />    
  62.     <a href="http://YourTrinity.org">Trinity Fellowship Church</a>
  63. </div>
  64.  
  65. </div>
  66.  
  67. </body>
  68. </html>
  69.