| 2674 |
vikas |
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 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
|
5 |
<title>Customer Order Input</title>
|
|
|
6 |
</head>
|
|
|
7 |
<body>
|
|
|
8 |
<noscript>
|
|
|
9 |
<p id="noScript">Please allow <em>Javascript</em>
|
|
|
10 |
in order to function this website correctly!</p>
|
|
|
11 |
</noscript>
|
|
|
12 |
#set($messages = $action.getActionMessages())
|
|
|
13 |
#if($messages && $messages.size() != 0)
|
|
|
14 |
#foreach($message in $messages)
|
|
|
15 |
$message <br/>
|
|
|
16 |
#end
|
|
|
17 |
#end
|
|
|
18 |
|
|
|
19 |
#set($messages = $action.getActionErrors())
|
|
|
20 |
#if($messages && $messages.size() != 0)
|
|
|
21 |
#foreach($message in $messages)
|
|
|
22 |
$message <br/>
|
|
|
23 |
#end
|
|
|
24 |
#end
|
|
|
25 |
|
|
|
26 |
<form id="frmOrderCustomer" name="frmOrderCustomer" method="post" action="order-customer-input">
|
|
|
27 |
<label>
|
|
|
28 |
<span>Customer Id(Email):</span>
|
|
|
29 |
</label>
|
|
|
30 |
<input type="text" value="" name="email" id="email" /><br/>
|
|
|
31 |
<label>
|
|
|
32 |
<span>Order Id:</span>
|
|
|
33 |
</label>
|
|
|
34 |
<input type="text" value="" name="orderId" id="orderId" /><br/>
|
|
|
35 |
<input type="submit" name="submit" id="submit" value="Submit"/>
|
|
|
36 |
</form>
|
|
|
37 |
</body>
|
|
|
38 |
</html>
|