From 4933e9f69de80b080393e66b26e8c32a9cc263d6 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 26 Feb 2009 03:51:03 +0000 Subject: [PATCH] make signup for a bit friendlier for BILL signups for testingm RT#4018 --- fs_selfservice/FS-SelfService/cgi/signup.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fs_selfservice/FS-SelfService/cgi/signup.html b/fs_selfservice/FS-SelfService/cgi/signup.html index 29078e2f7..81a3c76aa 100755 --- a/fs_selfservice/FS-SelfService/cgi/signup.html +++ b/fs_selfservice/FS-SelfService/cgi/signup.html @@ -148,7 +148,7 @@ Contact Information 'CHEK' => qq!Electronic check
${r}Account number
${r}ABA/Routing code Type
{$r}Bank State
${r}Bank name !, 'DCHK' => qq!Electronic check
${r}Account number Type
${r}ABA/Routing code
{$r}Bank State
${r}Bank name !, 'LECB' => qq!Phone bill billing
${r}Phone number !, - 'BILL' => qq!Billing
P.O.
*Exp !. expselect("BILL", "12-2037"). qq!
*Attention
!, + 'BILL' => qq!Billing
P.O.
Attention!, 'COMP' => qq!Complimentary
*Approved by
*Exp !. expselect("COMP"), 'PREPAY' => qq!Prepaid card
*!, ); @@ -178,7 +178,7 @@ Contact Information 'CHEK' => qq!Electronic check
${r}Account number Type
${r}ABA/Routing code
${r}Bank name !, 'DCHK' => qq!Electronic check
${r}Account number Type
${r}ABA/Routing code
${r}Bank name !, 'LECB' => qq!Phone bill billing
${r}Phone number !, - 'BILL' => qq!Billing
P.O.
*Exp !. expselect("BILL", $paydate). qq!
*Attention
!, + 'BILL' => qq!Billing
P.O.
Attention!, 'COMP' => qq!Complimentary
*Approved by
*Exp !. expselect("COMP", $paydate), 'PREPAY' => qq!Prepaid card
*!, ); @@ -224,9 +224,11 @@ foreach my $payby_option ( @payby ) { $options{$payby_option} = $payby_index{$payby_option}; } +my $selected_layer = ( grep { $_ eq 'CARD' } @payby ) ? 'CARD' : $payby[0]; + HTML::Widgets::SelectLayers->new( options => \%options, - selected_layer => 'CARD', + selected_layer => $selected_layer, form_name => 'dummy', html_between => '', form_action => 'dummy.cgi', -- 2.11.0