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
|
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <html lang="en"> <head> <meta charset="utf-8"> <title>Express Checkout - Order Cancelled</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Angell EYE"> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> <script type="text/javascript" src="https://code.jquery.com/jquery-2.2.0.min.js"></script> <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <style> #angelleye-logo { margin:10px 0; } thead th { background: #F4F4F4; } th.center { text-align:center; } td.center{ text-align:center; } #paypal_errors { margin-top:25px; } .general_message { margin: 20px 0 20px 0; } #angelleye-demo-digital-goods-success-msg { display:none; } </style> </head> <body> <div class="container"> <div class="row clearfix"> <div class="col-md-12 column"> <h2 align="center">Order Cancelled</h2> <div class="alert alert-info"> <p>Here we display a cancelled order notice to the buyer.</p> </div> <div class="alert alert-info"> <p>The payment has not been processed at this point because we cancelled the payment.</p> </div> <a class="btn btn-primary" href="<?php echo site_url('paypal/demos/intro');?>">Start over</a> </div> </div> </div> </body> </html>
|