diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-10-02 12:49:33 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-10-03 07:40:08 -0400 |
| commit | bb930ebb29f1a000ef096de937dc69cd9d83615b (patch) | |
| tree | 7a3a3bb28081ee568dd93b59e26633f4ceb19ec4 /min_selfservice/elements/card.php | |
| parent | b9bbcb931c701704f1ab3075c6728c287501afad (diff) | |
Revert "RT# 39340 - Created minimal selfservice that only allows payments to be made, authorization is based on ip and mac address. This is not done yet need to write routine to get mac address from radius server based on ip address."
This reverts commit 7668262421ea253ffaf95e0233e037f2857f7071.
Diffstat (limited to 'min_selfservice/elements/card.php')
| -rw-r--r-- | min_selfservice/elements/card.php | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/min_selfservice/elements/card.php b/min_selfservice/elements/card.php deleted file mode 100644 index 4d502c223..000000000 --- a/min_selfservice/elements/card.php +++ /dev/null @@ -1,53 +0,0 @@ -<TR> - <TD ALIGN="right">Card number</TD> - <TD COLSPAN=6> - <TABLE> - <TR> - <TD> - <INPUT TYPE="text" NAME="payinfo" SIZE=20 MAXLENGTH=19 VALUE="<? echo $payinfo ?>"> </TD> - <TD>Exp.</TD> - <TD> - <SELECT NAME="month"> - <? $months = array( '01', '02', '03' ,'04', '05', '06', '07', '08', '09', '10', '11', '12' ); - foreach ( $months AS $m ) { - ?> - <OPTION <? if ($m == $month) { echo 'SELECTED'; } ?>><? echo $m; ?> - <? } ?> - </SELECT> - </TD> - <TD> / </TD> - <TD> - <SELECT NAME="year"> - <? $years = array( '2018', '2019', '2020', '2021', '2022', '2023', '2024', '2025', '2026' ); - foreach ( $years as $y ) { - ?> - <OPTION <? if ($y == $year ) { echo 'SELECTED'; } ?>><? echo $y; ?> - <? } ?> - </SELECT> - </TD> - </TR> - </TABLE> - </TD> -</TR> -<? if ( $withcvv ) { ?> - <TR> - <TD ALIGN="right">CVV2 (<A HREF="javascript:myopen('cvv2.html','cvv2','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=480,height=288')">help</A>)</TD> - <TD><INPUT TYPE="text" NAME="paycvv" VALUE="" SIZE=4 MAXLENGTH=4></TD> - </TR> -<? } ?> -<TR> - <TD ALIGN="right">Exact name on card</TD> - <TD COLSPAN=6><INPUT TYPE="text" SIZE=32 MAXLENGTH=80 NAME="payname" VALUE="<? echo $payname; ?>"></TD> -</TR> - -<? $lf = $freeside->mason_comp(array( - 'session_id' => $_COOKIE['session_id'], - 'comp' => '/elements/location.html', - 'args' => [ - 'no_asterisks' , 1, - #'address1_label' , 'Card billing address', - 'address1_label' , 'Card billing address', - ], - )); - echo $lf['output']; -?> |
