24 lines
485 B
HTML
24 lines
485 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Payment History</title>
|
|
</head>
|
|
<body>
|
|
<h1>Payment History</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Amount</th>
|
|
<th>Method</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Payment records will be inserted here dynamically -->
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|