Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/j3/plugins/hikashoppayment/mangopay/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/j3/plugins/hikashoppayment/mangopay/mangopay_end.php

<?php
/**
 * @package    HikaMarket for Joomla!
 * @version    3.1.1
 * @author     Obsidev S.A.R.L.
 * @copyright  (C) 2011-2020 OBSIDEV. All rights reserved.
 * @license    GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
defined('_JEXEC') or die('Restricted access');
?><?php
if(!empty($this->createdCardRegister)) {
?>
<form action="<?php echo
$this->createdCardRegister->CardRegistrationURL; ?>"
method="post">
	<input type="hidden" name="data"
value="<?php echo
$this->createdCardRegister->PreregistrationData; ?>" />
	<input type="hidden" name="accessKeyRef"
value="<?php echo $this->createdCardRegister->AccessKey;
?>" />
	<input type="hidden" name="returnURL"
value="<?php echo $this->return_url; ?>" />

	<label for="cardNumber"><?php echo
JText::_('CARD_NUMBER'); ?></label>
	<input type="text" autocomplete="off"
name="cardNumber" value="" />
	<div class="clear"></div>

	<label for="cardExpirationDate"><?php echo
JText::_('EXPIRATION_DATE'); ?></label>
	<input type="text" autocomplete="off"
name="cardExpirationDate" value=""
placeholder="MMYY"/>
	<div class="clear"></div>

	<label for="cardCvx"><?php echo
JText::_('CVV'); ?></label>
	<input type="text" autocomplete="off"
name="cardCvx" value="" />
	<div class="clear"></div>

	<input type="submit" value="Pay" />
</form>
<?php
}