Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13691 manish.sha 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>HomeShop18 Order Creation Dashboard</title>
5
		<link type = "text/css" href = "css/ebay.css" rel = "stylesheet"/>
6
		<script type="text/javascript" src="js/jquery-1.4.2.js"></script>
7
	</head>
8
	<body>
9
		<span><a href="/Support/hs-dashboard">Go to HomeShop18 Dashboard</a></span>
10
		<h2 style = "text-align:center;text-decoration: underline">HomeShop18 Order Creation Dashboard</h2>
11
		<br/>
12
		 #set($messages = $action.getActionErrors())
13
            #if($messages && $messages.size() != 0)
14
                #foreach($message in $messages)
15
                    $message <br/>
16
                #end
17
            #end
18
		#set($errorMsg=$action.getErrorMsg())
19
		#if(!$errorMsg.isEmpty())
20
        <div style="color:red">
21
            $errorMsg
22
        </div>
23
		#end
24
		<form name="hs-order-creation" class = "ebay-file-uploader" action="$request.getContextPath()/hs-order-creator/" method="post" enctype="multipart/form-data" style = "margin-left:30px">
25
			<table>
26
				<tr/>
27
				<tr>
28
					<td>Select File:</td>
29
					<td><input type="file" name="orderDataFile"/></td>
30
				</tr>
31
				<tr/>
32
				<tr>
33
					<td>&nbsp;</td>
34
					<td><input type="submit" value="Create Orders"/></td>
35
				</tr>
36
            </table>
37
		</form>
38
 
39
	</body>
40
</html>