Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
        <head>
                <title>HomeShop18 Order Creation Dashboard</title>
                <link type = "text/css" href = "css/ebay.css" rel = "stylesheet"/>
                <script type="text/javascript" src="js/jquery-1.4.2.js"></script>
        </head>
        <body>
                <span><a href="/Support/hs-dashboard">Go to HomeShop18 Dashboard</a></span>
                <h2 style = "text-align:center;text-decoration: underline">HomeShop18 Order Creation Dashboard</h2>
                <br/>
                 #set($messages = $action.getActionErrors())
            #if($messages && $messages.size() != 0)
                #foreach($message in $messages)
                    $message <br/>
                #end
            #end
                #set($errorMsg=$action.getErrorMsg())
                #if(!$errorMsg.isEmpty())
        <div style="color:red">
            $errorMsg
        </div>
                #end
                <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">
                        <table>
                                <tr/>
                                <tr>
                                        <td>Select File:</td>
                                        <td><input type="file" name="orderDataFile"/></td>
                                </tr>
                                <tr/>
                                <tr>
                                        <td>&nbsp;</td>
                                        <td><input type="submit" value="Create Orders"/></td>
                                </tr>
            </table>
                </form>
                
        </body>
</html>