| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/hering/ui/theme/lrsys/ |
Upload File : |
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>{$title}</h3>
</div>
<div class="modal-body">
<div class="row">
<div class="widget-1 col-sm-12">
<div class="">
<div class="panel-body">
<form role="form" name="accadd" id="form-modal-pmethod" method="post">
<div class="form-group col-xs-12">
<label for="status">{$_L['Status']}</label>
<input class="form-control" type="checkbox" name="enabled" id="enabled" {if $c['enabled']==1}checked{/if} data-toggle="toggle" data-size="small" data-on="{$_L['Active']}" data-off="{$_L['Inactive']}">
</div>
<div class="form-group col-xs-12">
<label for="name">{$_L['Name']}</label>
<input type="text" class="form-control" id="name" {if $c['default']==1}readonly{/if} name="name" value="{$c['name']}">
</div>
<div class="form-group col-md-6">
<label for="name">{$_L['Alias']}</label>
<input type="text" class="form-control" id="alias" {if $c['default']==1}readonly{/if} name="alias" value="{$c['alias']}">
</div>
<div class="form-group col-md-6">
<label for="name">{$_L['Icon']}</label>
<input type="text" class="form-control" maxlength="40" {if $c['default']==1}readonly{/if} id="icon" name="icon" value="{$c['icon']}">
</div>
<div class="form-group col-md-6">
<label for="name">{$_L['Interest']}</label>
<input type="text" class="form-control percent" maxlength="40" id="interest" name="interest" value="{$c['interest']}">
</div>
<div class="form-group col-md-6">
<label for="name">{$_L['Fines']}</label>
<input type="text" class="form-control percent" maxlength="40" id="fines" name="fines" value="{$c['fines']}">
</div>
<div class="form-group col-md-12">
<label >{$_L['Accounts']}</label>
</div>
{foreach $accounts as $a}
<div class="form-group col-md-3">
<input type="checkbox" name="accounts[]" value="{$a['id']}" {if in_array($a['id'],$arrayAccount)}checked{/if}>{$a['account']}
</div>
{/foreach}
<input type="hidden" name="id" value="{$c['id']}">
</form>
</div>
</div>
</div> <!-- Widget-1 end-->
<!-- Widget-2 end-->
</div> <!-- Row end-->
</div>
<div class="modal-footer">
<button type="button" data-dismiss="modal" class="btn btn-danger">{$_L['Cancel']}</button>
<button class="btn btn-primary " type="submit" id="modal_pmethod_submit"><i class="fa fa-check"></i> {$_L['Save']}</button>
</div>