Subversion Repositories SmartDukaan

Rev

Rev 2724 | Rev 3096 | Go to most recent revision | Blame | Compare with Previous | 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>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
        <title>Saholic CRM</title>
        <link rel="stylesheet" href="/crm/css/common.css" type="text/css" />
    </head>
    <body>
        <!-- main-->
        <div id="topbar">
            <div id="topbar-left">
            <h2 >Saholic CRM</h2>
                <form method="post" action="">
                    <label>
                        <span>Customer Id(Email):</span>
                    </label>
                    <input type="text" name="email" id="email" />
                    <label>
                        <span>Mobile No:</span>
                    </label>
                    <input type="text" size="10" name="mobileNumber" id="mobileNumber"/>
                    <label>
                        <span>Order Id:</span>
                    </label>
                    <input type="text" name="orderId" size="5" id="orderId"/>
                    <!--
                    <label>
                        <span>Ticket Id:</span>
                    </label>
                    <input type="text" name="ticketId" size="4" id="ticketId"/>
                    -->
                    <input type="submit" name="submit" id="submit" value="Submit"/>
                </form>
            </div>
            <div id="topbar-right">
                <label >Welcome $action.getAgentName()</label>
                <br />
                <a href="/crm/change-password.html">
                    Change Password
                </a>
                <br />
                <a href="/crm/login!logout">
                    Logout
                </a>
            </div>
        </div>
        <div id="middle">
            <span>Please enter user id(email), user mobile no, order id or ticket id.</span>
            #set($messages = $action.getActionMessages())
            #if($messages && $messages.size() != 0)
                #foreach($message in $messages)
                    <br/>$message
                #end
            #end

            #set($messages = $action.getActionErrors())
            #if($messages && $messages.size() != 0)
                #foreach($message in $messages)
                    <span class="error"><br/>$message</span>
                #end
            #end
        </div>
        <div id="footer">
        </div>
    </body>
</html>