97 lines
No EOL
5.5 KiB
PHP
97 lines
No EOL
5.5 KiB
PHP
<?php
|
|
require_once ("core.php");
|
|
// $html = file_get_contents('https://ifastnet.com/payment-methods.php');
|
|
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?=$title?> - Payment Methods & Information</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
|
|
<meta name="description" content="<?=$description?>">
|
|
<meta name="author" content="<?=$author?>">
|
|
<link href="favicon.ico?_=<?=$static_release?>" rel="icon">
|
|
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="./css/style.css?_=<?=$static_release?>" rel="stylesheet"><!--[if lt IE 9]>
|
|
<script src="./js/ie8-responsive-file-warning.js"></script><![endif]-->
|
|
<script src="./js/ie-emulation-modes-warning.js"></script><!--[if lt IE 9]>
|
|
<script src="//cdn.bootcss.com/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script><![endif]-->
|
|
</head>
|
|
<body>
|
|
<?php include ("nav.php"); ?>
|
|
<div class="container">
|
|
<div class="row">
|
|
<section class="section-wrap title">
|
|
<div class="container">
|
|
<h2 class="text-center">Payment Methods</h2>
|
|
<p class="text-center">Payment methods information</p>
|
|
</div>
|
|
</section>
|
|
<section class="section-wrap paymentsInfo">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="hidden-xs col-sm-12 col-md-12 termsHead"><h1>Payment Methods</h1></div>
|
|
<div class="col-sm-12 col-md-12">
|
|
|
|
<p>We currently accept payments using 3 major payment gateways:</p>
|
|
|
|
<ul>
|
|
<li><strong>Paypal</strong> - using credit cards and paypal accounts</li>
|
|
<li><strong>WorldPay</strong> - instant credit cards payments</li>
|
|
<li><strong>2CheckOut</strong> - instant and recurrent credit cards payments as well as paypal payments where countries support it.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="section-wrap sectionPaymentLogos">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-12">
|
|
<div class="col-sm-12 col-md-12">
|
|
<img src="./images/payment/paypal.jpg" border="0" alt="Paypal payments">
|
|
<img src="./images/payment/poweredByWorldPay.gif" border="0" alt="Worldpay payments">
|
|
<img src="./images/payment/2co11.jpg" border="0" alt="2CheckOut payments">
|
|
</div>
|
|
<div class="col-sm-12 col-md-12">
|
|
<img src="./images/payment/visa_debit.gif" border="0" alt="Visa Debit payments supported by WorldPay">
|
|
<img src="./images/payment/visa_electron.gif" border="0" alt="Visa Electron payments supported by WorldPay">
|
|
<img src="./images/payment/mastercard.gif" border="0" alt="Mastercard payments supported by WorldPay">
|
|
<img src="./images/payment/maestro.gif" border="0" alt="Maestro payments supported by WorldPay">
|
|
<img src="./images/payment/AMEX.gif" border="0" alt="American Express payments supported by WorldPay">
|
|
<img src="./images/payment/diners.gif" border="0" alt="Diners payments supported by WorldPay">
|
|
<img src="./images/payment/JCB.gif" border="0" alt="JCB payments supported by WorldPay">
|
|
<img src="./images/payment/laser.gif" border="0" alt="Laser payments supported by WorldPay">
|
|
<img src="./images/payment/ELV.gif" border="0" alt="ELV payments supported by WorldPay">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="section-wrap sectionPolicies">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-12 terms_policies_menu">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><i class="glyphicon glyphicon-list-alt"></i> Other legal information</div>
|
|
<div class="panel-body">
|
|
<ul>
|
|
<li><a href="./legal_terms.php" data-i18n="tos">Terms of Service</a></li>
|
|
<li><a href="./legal_cancellation-refund.php" data-i18n="cancellation_refund">Cancellation & Refund</a></li>
|
|
<li><a href="./legal_privacy.php" data-i18n="privacy_policy">Privacy Policy</a></li>
|
|
<li class="active" data-i18n="payment_methods">Payment Methods & Information</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<?php include ("footer.php"); ?>
|
|
</body>
|
|
</html>
|