mitrobill/ui/ui/refill.tpl

39 lines
1.8 KiB
Smarty
Raw Normal View History

2022-09-06 10:31:33 +07:00
{include file="sections/header.tpl"}
2022-10-15 23:18:24 +07:00
<div class="row">
<div class="col-sm-12 col-md-12">
2022-10-17 11:57:39 +07:00
<div class="panel panel-primary panel-hovered panel-stacked mb30">
2024-02-13 13:54:01 +07:00
<div class="panel-heading">{Lang::T('Refill Account')}</div>
2022-10-15 23:18:24 +07:00
<div class="panel-body">
<form class="form-horizontal" method="post" role="form" action="{$_url}prepaid/refill-post">
<div class="form-group">
2024-02-13 13:54:01 +07:00
<label class="col-md-2 control-label">{Lang::T('Select Account')}</label>
2022-10-15 23:18:24 +07:00
<div class="col-md-6">
2023-08-23 12:11:07 +07:00
<select id="personSelect" class="form-control select2" name="id_customer"
2024-02-13 13:54:01 +07:00
style="width: 100%" data-placeholder="{Lang::T('Select a customer')}...">
2022-10-15 23:18:24 +07:00
</select>
</div>
</div>
<div class="form-group">
2024-02-13 13:54:01 +07:00
<label class="col-md-2 control-label">{Lang::T('Code Voucher')}</label>
2022-10-15 23:18:24 +07:00
<div class="col-md-6">
<input type="text" class="form-control" id="code" name="code"
2024-02-13 13:54:01 +07:00
placeholder="{Lang::T('Enter voucher code here')}">
2022-10-15 23:18:24 +07:00
</div>
</div>
2022-09-06 10:31:33 +07:00
2022-10-15 23:18:24 +07:00
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
<button class="btn btn-success waves-effect waves-light"
2024-02-13 13:54:01 +07:00
type="submit">{Lang::T('Recharge')}</button>
Or <a href="{$_url}customers/list">{Lang::T('Cancel')}</a>
2022-10-15 23:18:24 +07:00
</div>
</div>
</form>
</div>
</div>
</div>
</div>
2023-08-23 12:11:07 +07:00
2022-10-15 23:18:24 +07:00
{include file="sections/footer.tpl"}