summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/finish_thirdparty_payment.html
blob: 79c02cc608c1e5e3010448d2a52d21803cb843a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<%= include('header', 'Payment confirmation') %>

<TABLE BGCOLOR="#cccccc">
<%= if ( $error ) {
  $OUT .= '<FONT SIZE=+1><B>Payment processing error</B></FONT><BR>'.$error;
} else {
  $OUT .= '
<TR><TH COLSPAN=2><FONT SIZE=+1><B>Your payment details</B></FONT></TH></TR>
<TR>
  <TD ALIGN="right">Payment&nbsp;#</TD>
  <TD BGCOLOR="#ffffff"><B>' . $paynum . '</B></TD>
</TR>
<TR>
  <TD ALIGN="right">Payment&nbsp;amount</TH>
  <TD BGCOLOR="#ffffff"><B>' . sprintf('$%.2f', $paid) . '</B></TD>
</TR>
<TR>
  <TD ALIGN="right">Processing&nbsp;#</TD>
  <TD BGCOLOR="#ffffff"><B>' . $order_number . '</B></TD>
</TR>';
} %>
<%= include('footer') %>