-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentstatus.php
42 lines (38 loc) · 1.12 KB
/
paymentstatus.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
<!-- Start Of Header -->
<?php
include('./mainInclude/header.php');
?>
<!-- End Of Header -->
<!-- start of course banner -->
<div class="container-fluid bg-dark">
<div class="row">
<img src="./images/cour.jpg" alt="course" style="height: 500px; width: 100%; object-fit:cover; box-shadow: 10px;"/>
</div>
</div>
<!-- end of course banner -->
<!-- Start Of Payment Status -->
<div class="container">
<h2 class="text-center my-4">Payment Status</h2>
<form action="" method="POST">
<div class="form-group row">
<label for="offset-sm-3 col-form-label">Order ID: </label>
<div>
<input type="text" class="form-control mx-3">
</div>
<div>
<input type="submit" class="btn btn-primary mx-4" value="view">
</div>
</div>
</form>
</div>
<!-- End Of Payment Status -->
<!-- start contact page -->
<?php
include('./contact.php');
?>
<!-- end contact page -->
<!-- start of footer -->
<?php
include('./mainInclude/footer.php');
?>
<!-- end of footer -->