-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcustomer_account_statement.php
51 lines (41 loc) · 1.4 KB
/
customer_account_statement.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
<?php
session_start();
if(!isset($_SESSION['customer_login']))
header('location:index.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Account Statement</title>
<link rel="stylesheet" href="newcss.css">
<style>
.content_customer table,th,td {
padding:6px;
border: 1px solid #2E4372;
border-collapse: collapse;
text-align: center;
}
</style>
</head>
<?php include 'header.php' ?>
<div class='content_customer'>
<?php include 'customer_navbar.php'?>
<div class="customer_top_nav">
<div class="text">Welcome <?php echo $_SESSION['name']?></div>
</div>
<br><br><br><br>
<h3 style="text-align:center;color:#2E4372;"><u>Account summary by Date</u></h3>
<form action="customer_account_statement_date.php" method="POST">
<table align="center">
<tr><td>Start Date [mm/dd/yyyy] </td><td>
<input type="date" name="date1" required></td></tr>
<tr><td>End Date [mm/dd/yyyy] </td><td>
<input type="date" name="date2" required></td></tr>
</table>
<table align="center"><tr><td colspan="2" align='center' ><input type="submit" name="summary_date" value="Go" class="addstaff_button"/></td>
</tr>
</table>
</form>
</div>
<?php include 'footer.php'?>