Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //FORM
- <?php
- require('authenticate.php');
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Don's Report Dashboard</title>
- <link type="text/css" href="css/dark-hive/jquery-ui-1.8.22.custom.css" rel="stylesheet" />
- <link href="css/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
- <script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min.js"></script>
- <script type="text/javascript">
- $(function(){
- // Datepicker
- $('#date1').datepicker({
- inline: true,
- dateFormat: "yy-mm-dd"
- });
- // Datepicker
- $('#date2').datepicker({
- inline: true,
- dateFormat: "yy-mm-dd"
- });
- //hover states on the static widgets
- $('#dialog_link, ul#icons li').hover(
- function() { $(this).addClass('ui-state-hover'); },
- function() { $(this).removeClass('ui-state-hover'); }
- );
- });
- </script>
- <style>
- .ui-datepicker {font-size:64%; }
- </style>
- </head>
- <body>
- <div id="head-container">
- <div id="header">
- <h1><img src="images/mbclogo.png" width="275" height="75" /></h1>
- </div>
- </div>
- <div id="content-container">
- <div id="content-container2">
- <div id="content-container3">
- <div id="content">
- <h1>Reports Dashboard</h1>
- <ul id="navigation">
- <li><a href="index.php">Home</a></li>
- <li><a href="TDReports.php">TD Reports</a></li>
- <li><a href="HLReports.php">HL Reports</a></li>
- <li><a href="logout.php">Log out</a></li>
- </ul>
- <p> </p>
- <table width="276" border="0" cellpadding="0">
- <form name="datequery" action="tdprocess.php" method="Get" target="_blank">
- <caption>
- <h2>Tracy Driscoll</h2>
- </caption>
- <tr>
- <td width="139"> </td>
- <td width="131"> </td>
- </tr>
- <tr>
- <td>Enter Start Date:</td>
- <td><input name="date1" value="" type="text" id="date1" size="10" />
- </td>
- </tr>
- <tr>
- <td>Enter End Date:</td>
- <td><input name="date2" value="" type="text" id="date2" size="10" />
- </td>
- </tr>
- <tr>
- <td><select name="quote_type" size="1">
- <option value=""></option>
- <option value="auto">Auto</option>
- <option value="business">Business</option>
- <option value="home">Home</option>
- <option value="life">Life</option>
- </select></td>
- <td> </td>
- </tr>
- <tr>
- <td> </td>
- <td><input type="submit" value="Submit"></td>
- </tr>
- </table>
- </form>
- <a href="adddataTD.php" target="_new">Add Record</a>
- <p> </p>
- </div>
- </div>
- </div>
- </div>
- <div id="footer-container">
- <div id="footer">
- <div align="center">MBC Interactive
- 28 Farnham Ave, Suite 300, Waterbury, CT 06708<br/>
- Tel 203-755-9893 Fax 203-753-0840<br/>
- website powered by<br/>
- <a href="www.mbcinteractive.com">MBC Interactive</a></div>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement