-
Notifications
You must be signed in to change notification settings - Fork 0
/
uwithdraw.jsp
80 lines (64 loc) · 3.34 KB
/
uwithdraw.jsp
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Highly Confidential Security System</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<base target="main">
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" height="218">
<tr>
<td width="12%" height="74"> </td>
<td width="22%" height="74">
<img border="0" src="images/header_02_sec.jpg" width="261" height="74"></td>
<td width="41%" height="74"><font size="5"><b>Highly Confidential
Security System</b></font></td>
</tr>
<tr>
<td width="12%" height="112">
<img border="0" src="images/header_04_sec.jpg" width="150" height="112"></td>
<td width="22%" height="112">
<img border="0" src="images/header_05_sec.jpg" width="273" height="112"></td>
<td width="41%" height="112">
<img border="0" src="images/header_06_sec.jpg" width="368" height="112"></td>
</tr>
<tr>
<td width="100%" colspan="3" background="images/mbg.gif" height="30">
<font color="#FFFFFF">
</font><a style="text-decoration: none" href="udeposit.jsp" target="_top">
<font color="#FFFFFF"><b>Deposit</b></font></a><font color="#FFFFFF">
<a style="text-decoration: none" target="main" href="uwithdraw.jsp">
<font color="#FFFFFF"><b>Withdraw</b></font></a>
<b><a href="uviewdetails.jsp" style="text-decoration: none"><font color="#FFFFFF">View Details</font></a></font></b></font>
<b><a href="logout.jsp" style="text-decoration: none"><font color="#FFFFFF">Logout</font></a></font></b></font>
</td>
</tr>
<tr>
<td colspan="3">
<center><font color="#0033FF" size="+2"><strong>WITHDRAW FORM</strong></font></center>
<%
String name=(String)session.getAttribute("NAME");
String acno=(String)session.getAttribute("ACCNO");
int accno=Integer.parseInt(acno);
%>
</td>
</tr>
<tr><td colspan="3">
<center><br>
<table border="1">
<script language="javascript" type="text/javascript" src="datetimepicker.js"></script>
<form name="f1" action="uwithdrawdel.jsp" method="post">
<tr>
<td><font color="#0033FF"><b>Enter Ur Account Number</b></font></td><td>:</td><td><input type="text" name="t1" value="<%=accno%>" readonly></td></tr>
<tr> <td><font color="#0033FF"><b>Enter ur WithDraw Amount<b></font></td><td>:</td><td><input type="text" name="t2"></td> </tr>
<tr><td colspan="3"><center><input type="submit" value="Add"> <input type="reset" value="Clear"></center></td></tr>
</table>
</center>
</td>
</tr>
</table>
</body>
</html>