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

<%= 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') %>