-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtc_payment.tpl
29 lines (29 loc) · 1.02 KB
/
btc_payment.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
<div class="panel">
<div class="panel-body pagination2">
<div class="row">
<div class="alert alert-info">
<span style="align-content: center"> This page will redirect you to site outside of {$site->title} to make your payment
<br>
If, for some reason, your account isn't updated automaticaly, please send us an email or use our contact form to inform us so we can fix the issue.</span>
</div>
</div>
</div>
<table class="data table table-condensed responsive-utilities jambo-table">
{foreach $donation as $donate}
<form method="post" action="btc_payment?action=submit">
{{csrf_field()}}
<thead>
<tr>
<th>{$donate->name} ({$donate->donation}$)</th>
</tr>
</thead>
<td>
<input type="hidden" name="price" value="{$donate->donation}">
<input type="hidden" name="role" value="{$donate->id}">
<input type="hidden" name="addyears" value="{$donate->addyears}">
<input type="submit" class="btn btn-primary" value="Pay with BTC">
</td>
</form>
{/foreach}
</table>
</div>