forked from WHMCS/templates-twenty-one
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforwardpage.tpl
More file actions
26 lines (18 loc) · 775 Bytes
/
forwardpage.tpl
File metadata and controls
26 lines (18 loc) · 775 Bytes
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
<div class="my-2">
{include file="$template/includes/alert.tpl" type="info" msg=$message textcenter=true}
</div>
<div class="mb-5 d-flex flex-column justify-content-center align-items-center">
<div class="progress w-25 my-4">
<div class="progress-bar progress-bar-striped progress-bar-animated bg-color-blue w-100" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">{lang key='loading'}</span>
</div>
</div>
<div id="frmPayment">
{$code}
<form method="post" action="{if $invoiceid}viewinvoice.php?id={$invoiceid}{else}clientarea.php{/if}">
</form>
</div>
</div>
<script>
setTimeout("autoSubmitFormByContainer('frmPayment')", 5000);
</script>