-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction.php
57 lines (53 loc) · 2.03 KB
/
transaction.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
<!DOCTYPE html>
<html>
<head>
<title> CUSTOMER </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
</head>
<body>
<div class="header">
<div class="header-right">
<a class="active" href="#"><h1>Retail Enterprise</h1></a>
</div>
</div>
<br><br>
<div class="container">
<h3>Transaction </h3>
<br>
<div class="row container" style="text-align:center">
<div class="col-md-3">
<button class="btn btn-default"><a href="AddNewTransaction.php">Add New Transaction</a></button>
</div>
<div class="col-md-3">
<button class="btn btn-default"><a href="PrevTransaction.php">Show Previous Transactions</a></button>
</div>
<div class="col-md-3">
<button class="btn btn-default"><a href="Transaction_datewise.php">Show Transactions Datewise</a></button>
</div>
<div class="col-md-1"></div>
</div>
</div>
<!--
<head>
<title> CUSTOMER </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container">
<h3>TRANSACTION!!!!!</h3>
<p><a href="AddNewTransaction.php">AddNewTransaction</a>
<a href="PrevTransaction.php">ShowPreviousTransactions</a>
<a href="Transaction_datewise.php">ShowTransactionsDatewise</a>
</p>
<!--<form action="getdata.php" method="post">
<p><input type="text" name="username" placeholder="Username"></p>
<p><input type="email" name="email" placeholder="Email"></p>
<p><input type="password" name="password" placeholder="Password"></p>
<p><input type="text" name="address" placeholder="Address"></p>
<p><input type="submit" value="Register"></p>
</form>
-->
</body>
</html>