Файл: upload/catalog/view/theme/default/template/payment/web_payment_software.tpl
Строк: 99
<form class="form-horizontal">
<fieldset
id="payment">
<legend><?php echo
$text_credit_card; ?></legend>
<div class="form-group
required">
<label class="col-sm-2 control-label"
for="input-cc-owner"><?php echo $entry_cc_owner;
?></label>
<div class="col-sm-10">
<input type="text" name="cc_owner"
value="" placeholder="<?php echo $entry_cc_owner;
?>" id="input-cc-owner" class="form-control"
/>
</div>
</div>
<div
class="form-group required">
<label
class="col-sm-2 control-label"
for="input-cc-number"><?php echo $entry_cc_number;
?></label>
<div class="col-sm-10">
<input type="text" name="cc_number"
value="" placeholder="<?php echo $entry_cc_number;
?>" id="input-cc-number" class="form-control"
/>
</div>
</div>
<div
class="form-group required">
<label
class="col-sm-2 control-label"
for="input-cc-expire-date"><?php echo
$entry_cc_expire_date; ?></label>
<div
class="col-sm-3">
<select
name="cc_expire_date_month" id="input-cc-expire-date"
class="form-control">
<?php foreach ($months as
$month) { ?>
<option value="<?php echo
$month['value']; ?>"><?php echo $month['text'];
?></option>
<?php } ?>
</select>
</div>
<div class="col-sm-3">
<select name="cc_expire_date_year"
class="form-control">
<?php foreach ($year_expire
as $year) { ?>
<option value="<?php echo
$year['value']; ?>"><?php echo $year['text'];
?></option>
<?php } ?>
</select>
</div>
</div>
<div class="form-group
required">
<label class="col-sm-2 control-label"
for="input-cc-cvv2"><?php echo $entry_cc_cvv2;
?></label>
<div class="col-sm-10">
<input type="text" name="cc_cvv2" value=""
placeholder="<?php echo $entry_cc_cvv2; ?>"
id="input-cc-cvv2" class="form-control" />
</div>
</div>
</fieldset>
</form>
<div
class="buttons">
<div class="pull-right">
<input type="button" value="<?php echo
$button_confirm; ?>" id="button-confirm"
data-loading-text="<?php echo $text_loading; ?>"
class="btn btn-primary" />
</div>
</div>
<script
type="text/javascript">
$('#button-confirm').bind('click',
function() {
$.ajax({
url:
'index.php?route=payment/web_payment_software/send',
type:
'post',
data: $('#payment :input'),
dataType: 'json',
cache:
false,
beforeSend: function()
{
$('#button-confirm').button('loading');
},
complete: function()
{
$('#button-confirm').button('reset');
},
success: function(json)
{
if (json['error']) {
alert(json['error']);
}
if
(json['redirect']) {
location =
json['redirect'];
}
}
});
});
</script>