-
Notifications
You must be signed in to change notification settings - Fork 10
/
feereport.php
61 lines (61 loc) · 2.42 KB
/
feereport.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
session_start();
include('modules/dbhandler.php');
include('modules/functions.php');
if(isset($_SESSION['id'])){
if(!($_SESSION['privileges'] == 'sec' || $_SESSION['privileges'] == 'aux' || $_SESSION['privileges'] == 'den' || $_SESSION['privileges'] == 'man' || $_SESSION['privileges'] == 'web')){
header('Location:denied.php');
}
}
else{
header('Location:index.php');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dental: Reporte de Honorarios</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<?php include('includes/styles.php');?>
<link rel="stylesheet" type="text/css" href="css/tablesorter.css" />
<?php include('includes/jquery.php');?>
<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/feereport.js"></script>
</head>
<body>
<div id="header">
<div class="center"><a href="menu.php"><img alt="logo" src="images/logo.png" /></a></div>
<div class="usersession">
<img alt="user" src="images/user.png" />
Registrado como <?php echo $_SESSION['firstname'] . ' ' . $_SESSION['firstlastname'] . ' ' . $_SESSION['secondlastname'];?> |
<a href="logout.php" class="session">Cerrar Sesión</a>
</div>
</div>
<div id="outer-wrapper">
<fieldset>
<legend>Reporte de Honorarios</legend>
<form action="#">
<p class="form">
<label for="dateinit">Fecha Inicio</label>
<input id="dateinit" name="dateinit" readonly="readonly" style="width:10%;" type="text" value="<?php echo date('m/d/Y');?>" />
</p>
<p class="form">
<label for="dateend">Fecha Finalización</label>
<input id="dateend" name="dateend" readonly="readonly" style="width:10%;" type="text" value="<?php echo date('m/d/Y');?>" />
</p>
<p class="form">
<label for="user">Dentista</label>
<select id="user" name="user"><?php writeDentistList();?></select>
</p>
<p class="form center">
<img alt="loader" id="loader" src="images/loader.gif" style="display:none;" />
<input type="button" value="Ver Reporte" />
</p>
</form>
</fieldset>
<div id="message" style="display:none;"></div>
<div id="data" style="display:none;"></div>
</div>
</body>
</html>