Subversion Repositories SmartDukaan

Rev

Rev 7363 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7285 rajveer 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
	<head>
4
		<title>Recharge Top Up</title>
5
 
6
		<link type = "text/css" href = "css/pincode.css" rel = "stylesheet"/>
7
		<link type = "text/css" href = "css/colorbox.css" rel = "stylesheet"/>
8
		<script type="text/javascript" src="js/jquery-1.4.2.js"></script>
9
		<script type="text/javascript" src="js/jquery.colorbox-min.js"></script>
10
	</head>
11
	<body>
12
		<h3>Recharge Topup</h3>
13
		#set($errorMsg=$action.getErrorMsg())
14
		#if(!$errorMsg.isEmpty())
15
        <div style="color:red">
16
            $errorMsg
17
        </div>
18
		#end
19
		Current wallet amount is : $action.getWalletBalance(1)
20
		<form name="recharge-topup" action="$request.getContextPath()/recharge-topup/" method="post"">
21
			<table>
22
				<tr>
23
					<td>Company:</td>
24
					<td>
25
						<select name="companyId">
26
                            <option value="1" selected>Spice Retail Pvt Ltd</option>
27
						</select>
28
					</td>
29
				</tr>
30
				<tr>
31
					<td>Amount:</td>
32
					<td>
33
						<input name="amount" type="text"/>
34
					</td>
35
				</tr>
36
				<tr>
37
					<td>&nbsp;</td>
38
					<td><input type="submit" value="Add amount"/></td>
39
				</tr>
40
            </table>
41
		</form>
42
 
43
		<br />
44
		<br />
45
		<br />
46
		<br />
47
 
48
	</body>
49
</html>