Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7371 anupam.sin 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
 
4
<head>
5
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6
    <link rel="stylesheet" href="css/rechargewebapp_18042013.css" type="text/css" />
7
	<style>
8
		.searchStore {
9
			height: 23px;
10
            border: 1px solid #999999;
11
            padding: 2px 5px 2px 10px;
12
            font-size: 16px;
13
            color: #777777;
14
            box-shadow: 1px -1px 10px -1px #999999 inset;
15
			width:100px
16
		}
17
 
18
		.submitButton {
19
			height: 25px;
20
            width: 100px;
21
            font-weight: bold;
22
            font-size: 15px;
23
            background-color: #2789c1;
24
            border: 1px solid blue;
25
            border-radius: 2px;
26
            color: white;
27
		}
28
 
29
		table, td, th
30
		{
31
			border:1px solid #2789C1;
32
			border-collapse:collapse;
33
			border-spacing:0;
34
		}
35
		th
36
		{
37
			background-color:#2789C1;
38
			color:white;
39
			text-align:center;
40
			padding:5px;
41
		}
42
		td
43
        {
44
			text-align:center;
45
			padding:5px;
46
        }
47
	</style>
48
</head>
49
 
50
#set($circles = $action.getCircles())
51
 
52
<body style="margin: 0;">
53
    <div style="line-height:37px;height:37px;background-color:#333;color:white;border-bottom: 5px solid white;">
54
    	<span style="margin-left:20px;font-weight:bold;font-size:15px">SAHOLIC RECHARGE ADMIN CONSOLE </span>
55
    	<span style="margin-left:120px;"><a style="color:white;" href="/rch/admin">Home</a></span>
56
    	<span style="margin-left:50px;"><a style="color:white;" href="/rch/admin!doLogout">Logout</a></span>
57
    </div>
58
 
59
    <div id="main" style="width:800px;margin: 5px 0 0 50px;">
60
		<form style="margin:25px;" action="/rch/add-series" method="post">
61
			<span>
62
        		Select a circle  
63
			</span>
64
    		<select style="height: 25px;border: 1px solid #2789C1;font-size: 15px;" name="circle">
65
    			<option value="0">Choose circle</option>
66
    			#foreach($circle in $circles)
67
					#if($circle.getId() == $action.getCircle())
68
						#set($circleName = $circle.getName())
69
						#set($circleId = $circle.getId())
70
						<option value="$circle.getId()" selected="true">$circle.getName()</option>
71
					#else
72
						<option value="$circle.getId()">$circle.getName()</option>
73
					#end
74
				#end
75
    		</select>
76
			<br><br>
77
			<span>
78
        		Select Operator  
79
			</span>
80
    		<select style="height: 25px;border: 1px solid #2789C1;font-size: 15px;" name="operatorId">
81
    			<option value="0">Choose operator</option>
82
    			#foreach($opId in $operatorsMap.keySet())
83
					#if($opId == $action.getOperatorId())
84
						<option value="$opId" selected="true">$operatorsMap.get($opId)</option>
85
					#else
86
						<option value="$opId">$operatorsMap.get($opId)</option>
87
					#end
88
				#end
89
    		</select>
90
			<br><br>
91
			Series : <input type="text" name="series" style="height: 20px;border: 1px solid #AAAAAA;border-radius: 5px;width: 100px;padding: 3px 5px;font-size: 15px;color: #777777;"></input>
92
			<br><br>
93
			<input type="submit" class='submitButton' value="SUBMIT"></input>
94
		</form>
95
 
96
    	#if($action.getMessage() != "")
97
    		<div style="width:600px;font-size: 16px;color: red;text-align: center;border: 1px solid red;margin: 5px;padding: 5px;">
98
        		$action.getMessage()
99
        	</div>
100
    	#end
101
	</div>
102
 
103
</body>
104
 
105
</html>