summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/make_thirdparty_payment.html
blob: 4055ed09e76492053c0b9f03a6efef14f16a6f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%= $url = "$selfurl?session=$session_id;action="; ''; %>
<%= include('header', 'Pay now') %>

<SCRIPT TYPE="text/javascript">
  function popcollect() {
    overlib( OLiframeContent('<%= $popup_url %>', 336, 550, 'Secure Payment Area', 0, 'auto' ), CAPTION, 'Pay now', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', CLOSETEXT, 'Close' );
    return false;
  }
</SCRIPT>
<SCRIPT TYPE="text/javascript" SRC="overlibmws.js"></SCRIPT>
<SCRIPT TYPE="text/javascript" SRC="overlibmws_iframe.js"></SCRIPT>
<SCRIPT TYPE="text/javascript" SRC="overlibmws_draggable.js"></SCRIPT>
<SCRIPT TYPE="text/javascript" SRC="overlibmws_crossframe.js"></SCRIPT>
<SCRIPT TYPE="text/javascript" SRC="iframecontentmws.js"></SCRIPT>

<%= if ( $error ) {
  $OUT .= qq!<FONT SIZE="+1" COLOR="#ff0000">$error</FONT><BR><BR>!;
}else{
  $OUT .= <<EOF;
    You are about to contact our payment processor to pay $amount.<BR><BR>
    Your transaction reference number is $reference <BR><BR>
    <FORM NAME="collect_popper" method="post" action="javascript:void(0)" onSubmit="popcollect()">
EOF

  my %itemhash = @collectitems;
  foreach my $input (keys %itemhash) {
    $OUT .= qq!<INPUT NAME="$input" TYPE="hidden" VALUE="$itemhash{$input}">!;
  }

  $OUT .= qq!<INPUT NAME="submit" type="submit" value="Pay now">!;
  $OUT .= qq!</FORM>!;
}
%>

<%= include('footer') %>