-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipient-details.php
47 lines (33 loc) · 1.08 KB
/
recipient-details.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
<?php include "includes/_header.php"; ?>
<main role="main" class="container">
<h1>Recipients</h1>
<div class="row">
<div class="col-sm-12"><label>ID</label>: <span id="recipient-id"></span></div>
</div>
<div class="row">
<div class="col-sm-12"><label>Name</label>: <span id="recipient-name"></span></div>
</div>
<div class="row">
<div class="col-sm-12"><label>Name</label>: <span id="recipient-email"></span></div>
</div>
<table class="table table-bordered" id="recipients-vouchers">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Code</th>
<th scope="col">Expiry Date</th>
<th scope="col">Used</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</main><!-- /.container -->
<?php include "includes/_footer_files.php"; ?>
<script src="js/recipients.js"></script>
<script type="application/javascript">
$(function() {
getSingleRecipient(<?php echo intval($_GET['id']) ?>);
});
</script>
<?php include "includes/_footer.php"; ?>