|
Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/kamariallee.com/public_html/application/views/ipay88/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>iPay88 Payment</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bellefair&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
body {
width: 90%;
margin-right: auto;
margin-left: auto;
font-family: 'Bellefair', serif;
}
h1,
h2 {
text-align: center;
}
h1 {
color: #615b56;
font-size: 2rem;
margin-bottom: 30px;
padding-bottom: 10px;
}
p {
color: #808080;
font-size: 1.1rem;
margin-bottom: 20px;
}
.mainSection {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
}
.topSection {
padding-top: 80px;
}
.bottomSection {
text-align: center;
}
.bottomSection p {
width: 100%;
}
.loader {
margin: auto;
border: 16px solid #615b56;
width: 70px;
height: 70px;
border-top-color: #c2b597;
border-bottom-color: #c2b597;
border-radius: 50%;
animation-name: spin;
animation-duration: 2s;
animation-delay: 0s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes appear {
100% {
opacity: 1;
}
}
#paymentLogo {
width:500px;
max-width: 100%;
}
</style>
</head>
<body>
<div class="mainSection">
<div class="topSection">
<h1>Payment Processing</h1>
<div class="loader"></div>
</div>
<div class="bottomSection">
<p>
iPay88 Indonesia as a licensed Payment Gateway and supervised by Bank Indonesia.
</p>
<p>
<img style="width: 80px" src="<?= base_url() . 'uploads/ipay88logo.webp'; ?>" alt="iPay88 Logo" />
</p>
<p>Compliance</p>
<p>
<img
id="paymentLogo"
src="<?= base_url() . 'uploads/ipay-paymentlogo.webp'; ?>"
alt="iPay88 Payment Logo" />
</p>
</div>
</div>
<?php if($url && $checkoutid && $signature) : ?>
<form method="POST" name="redirect" action="<?= $url; ?>">
<input type="hidden" name="CheckoutID" value="<?= $checkoutid; ?>" />
<input type="hidden" name="Signature" value="<?= $signature; ?>" />
</form>
<script language=javascript>
document.redirect.submit();
</script>
<?php endif; ?>
</body>
</html>