-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaymentstatus.php
More file actions
52 lines (44 loc) · 1.17 KB
/
Copy pathPaymentstatus.php
File metadata and controls
52 lines (44 loc) · 1.17 KB
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
<!-- Header -->
<?php
include('./Includes/Header.php');
?>
<!-- End of Header -->
<!-- Start Course Page Banner -->
<div class="container-fluid bg-dark">
<div class="row">
<img src="Image/person-1990906_1920.jpg" alt="courses"
style="height: 500px;
width: 100%;
object-fit:cover;
box-shadow:10px;"/>
</div>
</div>
<!-- End Course Page Banner -->
<!-- Start Payment Status -->
<br>
<div class="container">
<h2 class="text-center my-4"><u>Payment Status</u></h2><br>
<form method="post" action="">
<div class="form-group" style="display: flex; margin: auto;">
<label class="offset-sm-3 col-form-label">Order ID: </label>
<div class="col-auto">
<input type="text" class="form-control mx-3">
</div>
<div class="col-auto">
<input type="submit" class="btn btn-primary mx-4" value="View">
</div>
</div>
</form>
</div>
<!-- End of Payment Status -->
<!-- Footer -->
<?php
include('./Includes/Footer.php');
?>
<!-- End of Footer -->
<!-- Contact Us -->
<br>
<?php
include('./contact.php');
?>
<!-- End of contact Us -->