summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/recharge_results.html
blob: af15365b0d4e4561338f750d91a7922bf45220a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<%= $url = "$selfurl?session=$session_id;action="; ''; %>
<%= include('header') %>

<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.';
} %>

<%= include('footer') %>