summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/recharge_results.html
blob: 6d928e3f96187c5b4dccd9f46abcccf895725673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<HTML><HEAD><TITLE>MyAccount</TITLE></HEAD>
<BODY BGCOLOR="#eeeeee"><FONT SIZE=5>MyAccount</FONT><BR><BR>
<%= $url = "$selfurl?session=$session_id;action="; ''; %>
<%= include('myaccount_menu') %>
<TD VALIGN="top">
<FONT SIZE=4>Recharge results</FONT><BR><BR>
<%= if ( $error ) {
  $OUT .= qq!<FONT SIZE="+1" COLOR="#ff0000">Error processing your prepaid card: $error</FONT>!;
} else {
  $OUT .= 'Prepaid card recharge successful!<BR><BR>';

  $OUT .= '$'. sprintf('%.2f', $amount). ' added to your account.<BR><BR>'
    if $amount;

  $OUT .= $duration. ' added to your account.<BR><BR>'
    if $seconds;

  $OUT .= 'Thank you.';
} %>
</TD></TR></TABLE>
<%= include('footer') %>