mitrobill/ui/ui/voucher-add.tpl

62 lines
2.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
<!-- voucher-add -->
2022-09-06 10:31:33 +07:00
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">
2022-10-15 23:18:24 +07:00
<div class="panel-heading">{$_L['Add_Voucher']}</div>
<div class="panel-body">
2022-09-06 10:31:33 +07:00
2022-10-15 23:18:24 +07:00
<form class="form-horizontal" method="post" role="form" action="{$_url}prepaid/voucher-post">
2022-09-06 10:31:33 +07:00
<div class="form-group">
2022-10-15 23:18:24 +07:00
<label class="col-md-2 control-label">{$_L['Type']}</label>
<div class="col-md-6">
<input type="radio" id="Hot" name="type" value="Hotspot"> {$_L['Hotspot_Plans']}
<input type="radio" id="POE" name="type" value="PPPOE"> {$_L['PPPOE_Plans']}
</div>
2022-09-06 10:31:33 +07:00
</div>
<div class="form-group">
2022-10-15 23:18:24 +07:00
<label class="col-md-2 control-label">{$_L['Routers']}</label>
<div class="col-md-6">
2023-08-16 09:05:59 +07:00
<select id="server" name="server" class="form-control select2">
2022-10-15 23:18:24 +07:00
<option value=''>{$_L['Select_Routers']}</option>
2022-09-06 10:31:33 +07:00
</select>
2022-10-15 23:18:24 +07:00
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">{$_L['Service_Plan']}</label>
<div class="col-md-6">
2023-08-16 09:05:59 +07:00
<select id="plan" name="plan" class="form-control select2">
2022-10-15 23:18:24 +07:00
<option value=''>{$_L['Select_Plans']}</option>
</select>
</div>
2022-09-06 10:31:33 +07:00
</div>
2022-10-13 15:19:51 +07:00
2022-10-15 23:18:24 +07:00
<div class="form-group">
<label class="col-md-2 control-label">{$_L['Number_of_Vouchers']}</label>
<div class="col-md-6">
<input type="text" class="form-control" name="numbervoucher" value="1">
</div>
2022-09-06 10:31:33 +07:00
</div>
2022-10-13 15:19:51 +07:00
2022-10-15 23:18:24 +07:00
<div class="form-group">
<label class="col-md-2 control-label">{$_L['Length_Code']}</label>
<div class="col-md-6">
<input type="text" class="form-control" name="lengthcode" value="12">
</div>
2022-09-06 10:31:33 +07:00
</div>
2022-10-13 15:19:51 +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"
type="submit">{$_L['Generate']}</button>
</div>
</div>
2022-09-06 10:31:33 +07:00
</form>
2022-10-13 15:19:51 +07:00
2022-10-15 23:18:24 +07:00
</div>
</div>
</div>
</div>
2022-09-06 10:31:33 +07:00
2022-10-15 23:18:24 +07:00
{include file="sections/footer.tpl"}