Advertisement
johncarlson21

Untitled

Aug 7th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.10 KB | None | 0 0
  1. //FORM
  2. <?php
  3. require('authenticate.php');
  4. ?>
  5.  
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>Don's Report Dashboard</title>
  11. <link type="text/css" href="css/dark-hive/jquery-ui-1.8.22.custom.css" rel="stylesheet" />
  12. <link href="css/style.css" rel="stylesheet" type="text/css" />
  13. <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
  14. <script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min.js"></script>
  15.         <script type="text/javascript">
  16.             $(function(){
  17.  
  18.                 // Datepicker
  19.                 $('#date1').datepicker({
  20.                     inline: true,
  21. dateFormat: "yy-mm-dd"
  22.                 });
  23.                 // Datepicker
  24.                 $('#date2').datepicker({
  25.                     inline: true,
  26. dateFormat: "yy-mm-dd"
  27.                 });
  28.                
  29.                 //hover states on the static widgets
  30.                 $('#dialog_link, ul#icons li').hover(
  31.                     function() { $(this).addClass('ui-state-hover'); },
  32.                     function() { $(this).removeClass('ui-state-hover'); }
  33.                 );
  34.                
  35.             });
  36.         </script>
  37.        
  38. <style>
  39. .ui-datepicker {font-size:64%; }
  40.  
  41. </style>
  42. </head>
  43. <body>
  44. <div id="head-container">
  45.   <div id="header">
  46.     <h1><img src="images/mbclogo.png" width="275" height="75" /></h1>
  47.   </div>
  48. </div>
  49. <div id="content-container">
  50.   <div id="content-container2">
  51.     <div id="content-container3">
  52.       <div id="content">
  53.         <h1>Reports Dashboard</h1>
  54.         <ul id="navigation">
  55. <li><a href="index.php">Home</a></li>
  56. <li><a href="TDReports.php">TD Reports</a></li>
  57. <li><a href="HLReports.php">HL Reports</a></li>
  58. <li><a href="logout.php">Log out</a></li>
  59. </ul>
  60. <p>&nbsp;</p>
  61.  <table width="276" border="0" cellpadding="0">
  62.   <form name="datequery" action="tdprocess.php" method="Get" target="_blank">
  63.   <caption>
  64.     <h2>Tracy Driscoll</h2>
  65.     </caption>
  66.   <tr>
  67.     <td width="139">&nbsp;</td>
  68.     <td width="131">&nbsp;</td>
  69.   </tr>
  70.   <tr>
  71.     <td>Enter Start Date:</td>
  72.     <td><input name="date1" value="" type="text" id="date1" size="10" />
  73.             </td>
  74.   </tr>
  75.   <tr>
  76.     <td>Enter End Date:</td>
  77.     <td><input name="date2" value="" type="text" id="date2" size="10" />
  78.             </td>
  79.   </tr>
  80.   <tr>
  81.     <td><select name="quote_type" size="1">
  82. <option value=""></option>
  83. <option value="auto">Auto</option>
  84. <option value="business">Business</option>
  85. <option value="home">Home</option>
  86. <option value="life">Life</option>
  87. </select></td>
  88.     <td>&nbsp;</td>
  89.   </tr>
  90.   <tr>
  91.     <td>&nbsp;</td>
  92.     <td><input type="submit" value="Submit"></td>
  93.   </tr>
  94. </table>
  95. </form>                
  96. <a href="adddataTD.php" target="_new">Add Record</a>
  97. <p>&nbsp;</p>
  98.       </div>
  99.     </div>
  100.   </div>
  101. </div>
  102. <div id="footer-container">
  103.   <div id="footer">
  104.     <div align="center">MBC Interactive
  105.       28 Farnham Ave, Suite 300, Waterbury, CT  06708<br/>
  106.       Tel 203-755-9893        Fax  203-753-0840<br/>
  107.       website powered by<br/>
  108.       <a href="www.mbcinteractive.com">MBC Interactive</a></div>
  109.   </div>
  110. </div>
  111. </div>
  112. </body>
  113. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement