-
Notifications
You must be signed in to change notification settings - Fork 280
/
clientareaaddfunds.tpl
66 lines (60 loc) · 2.88 KB
/
clientareaaddfunds.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{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}