37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<form method="post" class="form-horizontal">
|
|
|
|
<input type="hidden" name="_ip_csrf" value="<?= $this->security->get_csrf_hash() ?>">
|
|
|
|
<div id="headerbar">
|
|
<h1 class="headerbar-title"><?php _trans('payment_method_form'); ?></h1>
|
|
<?php $this->layout->load_view('layout/header_buttons'); ?>
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<?php $this->layout->load_view('layout/alerts'); ?>
|
|
|
|
<input class="hidden" name="is_update" type="hidden"
|
|
<?php if ($this->mdl_payment_methods->form_value('is_update')) {
|
|
echo 'value="1"';
|
|
} else {
|
|
echo 'value="0"';
|
|
} ?>
|
|
>
|
|
|
|
<div class="form-group">
|
|
<div class="col-xs-12 col-sm-2 text-right text-left-xs">
|
|
<label for="payment_method_name" class="control-label">
|
|
<?php _trans('payment_method'); ?>:
|
|
</label>
|
|
</div>
|
|
<div class="col-xs-12 col-sm-6">
|
|
<input type="text" name="payment_method_name" id="payment_method_name" class="form-control"
|
|
value="<?php echo $this->mdl_payment_methods->form_value('payment_method_name', true); ?>">
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|