| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/templates/six/ |
Upload File : |
{if $addfundsdisabled}
{include file="$template/includes/alert.tpl" type="error" msg=$LANG.clientareaaddfundsdisabled textcenter=true}
{elseif $notallowed}
{include file="$template/includes/alert.tpl" type="error" msg=$LANG.clientareaaddfundsnotallowed textcenter=true}
{elseif $errormessage}
{include file="$template/includes/alert.tpl" type="error" errorshtml=$errormessage textcenter=true}
{/if}
{if !$addfundsdisabled}
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="panel">
<table class="table table-striped">
<tbody>
<tr>
<td class="textright"><strong>{$LANG.addfundsminimum}</strong></td>
<td>{$minimumamount}</td>
</tr>
<tr>
<td class="textright"><strong>{$LANG.addfundsmaximum}</strong></td>
<td>{$maximumamount}</td>
</tr>
<tr>
<td class="textright"><strong>{$LANG.addfundsmaximumbalance}</strong></td>
<td>{$maximumbalance}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-sm-6 col-sm-offset-3">
<div class="panel panel-default">
<div class="panel-body">
<form method="post" action="{$smarty.server.PHP_SELF}?action=addfunds">
<fieldset>
<div class="form-group">
<label for="amount" class="control-label">{$LANG.addfundsamount}:</label>
<input type="text" name="amount" id="amount"
value="{$amount}" class="form-control" required />
</div>
<div class="form-group">
<label for="paymentmethod" class="control-label">{$LANG.orderpaymentmethod}:</label><br/>
<select name="paymentmethod" id="paymentmethod" class="form-control">
{foreach from=$gateways item=gateway}
<option value="{$gateway.sysname}">{$gateway.name}</option>
{/foreach}
</select>
</div>
<div class="form-group">
<input type="submit" value="{$LANG.addfunds}" class="btn btn-primary btn-block" />
</div>
</fieldset>
</form>
</div>
<div class="panel-footer">
{$LANG.addfundsnonrefundable}
</div>
</div>
</div>
</div>
{/if}