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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<?php require_once ('../webadmin/basic_info.php'); ?>
<!DOCTYPE html> <html dir="ltr" lang="en-US"> <head> <?php require_once ("html_head.php") ?> </head>
<body class="stretched no-transition">
<?php require_once ("google_analysis.php"); ?>
<!-- Document Wrapper ============================================= --> <div id="wrapper" class="clearfix">
<!-- Header ============================================= --> <?php require_once ("html_header.php") ?>
<!-- Content ============================================= --> <section id="content">
<div class="content-wrap">
<div class="container clearfix">
<div class="col-md-9 bottommargin" > <div class="heading-block center"> <h1>Payment</h1> <span></span> </div>
<div> <p class="one_page_head_title">Payment at In N Out Storage facility :</p> Customer can pay by cash, cheque, or credit card at our storage facility during customer service hours. <br><br>
<p class="one_page_head_title">Online Payment :</p> Pay online through Paypal at our website. Payment through Paypal enrolls you to the automatic billing scheme, which is very convenient if you want to pay your rental fee monthly.<br><br>
<p class="one_page_head_title">Payment by Bank Deposit and Bank ATM :</p> Bank Name : Hang Seng Bank<br> Account Name : In N Out International Corporate Limited<br> Account Number : 239-480981-001<br><br>
<p class="one_page_head_title">Cheque by Mail :</p> Cheque payable to : In N Out International Corporate Limited<br> Mailing Address :<br> 12/F, Shing Dao Industrial Building, 232 Aberdeen Main Road, Aberdeen<br> * Please write the name of the personnel/company registered, unit number, and contact number at the back of the cheque * </div> </div>
<div class="col-md-3 center"> </div>
</div>
</div>
</section><!-- #content end -->
<!-- Footer ============================================= --> <?php require_once ("html_footer.php"); ?>
</div><!-- #wrapper end -->
<!-- Go To Top ============================================= --> <div id="gotoTop" class="icon-angle-up"></div>
<!-- Footer Scripts ============================================= --> <script type="text/javascript" src="../js/functions.js"></script>
</body> </html>
|