-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUY2
41 lines (36 loc) · 738 Bytes
/
BUY2
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
36
37
38
39
40
41
<HTML>
<HEAD>
<TITLE>PaymentGateways</TITLE>
</HEAD>
<%@ page import="java.sql.*"%>
<%
String xx1=(String)session.getAttribute("tttp");
%>
<BODY BGCOLOR="#99ffcc">
<form action="transdb.jsp">
<center>
<font color=green><h1>Make payment here<br>Enter The Fields TO Continue</h1></font><br> <br><br>
<TABLE>
<TR>
<TD align=right>Bank Account No.*:</TD>
<TD><input type=name name=g1></TD>
</TR>
<TR>
<TD>Bank Name*:</TD>
<TD><input type=name name=g2></TD>
</TR>
<TR>
<TD>Bank IFSC No.*:</TD>
<TD><input type=name name=g3></TD>
</TR>
<TR>
<TD>Amount:</TD>
<TD><input type=name name=g4 value="<%=xx1%>"></TD>
</TR>
</TABLE>
<br><br>
<input type=submit value=" PAY ">
</center>
</form>
</BODY>
</HTML>