| 8182 |
amar.kumar |
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>Ebay Listing Uploader</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/ebay-dashboard">Go to Ebay Dashboard</a></span>
|
|
|
10 |
<h2 style = "text-align:center;text-decoration: underline">Ebay Listing Uploader</h2>
|
|
|
11 |
<br/>
|
|
|
12 |
#set($errorMsg=$action.getErrorMsg())
|
|
|
13 |
#if(!$errorMsg.isEmpty())
|
|
|
14 |
<div style="color:red">
|
|
|
15 |
$errorMsg
|
|
|
16 |
</div>
|
|
|
17 |
#end
|
|
|
18 |
<form name="ebay-listing-uploader" class = "ebay-file-uploader" action="$request.getContextPath()/ebay-listing-uploader/" method="post" enctype="multipart/form-data" style = "margin-left:30px">
|
|
|
19 |
<table>
|
|
|
20 |
<tr/>
|
|
|
21 |
<tr>
|
|
|
22 |
<td>Select File:</td>
|
|
|
23 |
<td><input type="file" name="listingFile" title = "i"/></td>
|
|
|
24 |
</tr>
|
|
|
25 |
<tr/>
|
|
|
26 |
<tr>
|
|
|
27 |
<td> </td>
|
|
|
28 |
<td><input type="submit" value="Upload Listings"/></td>
|
|
|
29 |
</tr>
|
|
|
30 |
</table>
|
|
|
31 |
</form>
|
|
|
32 |
|
|
|
33 |
</body>
|
|
|
34 |
</html>
|