Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / fs_selfservice / FS-SelfService / cgi / finish_thirdparty_payment.html
1 <%= include('header', 'Payment confirmation') %>
2
3 <TABLE BGCOLOR="#cccccc">
4 <%= if ( $error ) {
5   $OUT .= '<FONT SIZE=+1><B>Payment processing error</B></FONT><BR>'.$error;
6 } else {
7   $OUT .= '
8 <TR><TH COLSPAN=2><FONT SIZE=+1><B>Your payment details</B></FONT></TH></TR>
9 <TR>
10   <TD ALIGN="right">Payment&nbsp;#</TD>
11   <TD BGCOLOR="#ffffff"><B>' . $paynum . '</B></TD>
12 </TR>
13 <TR>
14   <TD ALIGN="right">Payment&nbsp;amount</TH>
15   <TD BGCOLOR="#ffffff"><B>' . sprintf('$%.2f', $paid) . '</B></TD>
16 </TR>
17 <TR>
18   <TD ALIGN="right">Processing&nbsp;#</TD>
19   <TD BGCOLOR="#ffffff"><B>' . $order_number . '</B></TD>
20 </TR>';
21 } %>
22 <%= include('footer') %>