Subversion Repositories SmartDukaan

Rev

Rev 7264 | 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">

#if($action.getMessage() == "")
        #set($class="normalshadow")
#else
        #set($class="errorshadow")
#end

<head>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link rel="stylesheet" href="css/rechargewebapp_18042013.css" type="text/css" />
        <style>
                .mandatory {
                color:red;
                }
                
                #loginForm {
        width: 600px;
        overflow: visible;
        margin: 25px;
        border-radius: 15px;
                background-color:black;
                padding-top:25px;
                }
                
                .normalshadow{
                border: solid 2px grey;
                box-shadow: 0 0 10px 3px black;
                }
                
                .errorshadow{
                border: solid 1px red;
                box-shadow: 0 0 10px 3px red;
                }
                
                .loginButton {
            height: 30px;
            width: 150px;
            font-weight: bold;
            font-size: 18px;
            background-color: #2789c1;
            border: 1px solid blue;
            border-radius: 4px;
            color: white;
                }
        </style>
</head>



<body style="margin: 0;background-color:#333333">
<div style="line-height:37px;height:37px;background-color:#333;color:white;border-bottom: 5px solid white;">
        <span style="margin-left:20px;font-weight:bold;font-size:15px">SAHOLIC RECHARGE ADMIN CONSOLE</span>
</div>

<div id="main" style="width: 100%;min-width:500px;margin: 5px 0 0 0;">
        <form action="/rch/admin" id="loginForm" class="$class" method="post">
                
                #if($action.getMessage() != "")
        <div class="padding-row" style="font-size: 16px;color: red;padding: 0 0 10px 0px;text-align:center;">
                        $action.getMessage()
        </div>
                #end
        <div class="row">
                <div class="text" style="width:200px;color:#AAAAAA">Username : </div>
                <div class="input-div">
                        <input class="inputbox padding48" style="border-radius:7px;" type="text" name="username">
                </div>
        </div>
        
        <div class="row">
                <div class="text" style="width:200px;color:#AAAAAA">Password : </div>
                <div class="input-div">
                        <input class="inputbox padding48" style="border-radius:7px;" type="password" name="password">
                </div>
        </div>
        
        <div class="row" style="text-align: center;margin-top: 10px;">
                <input type="submit" value="LOGIN" class='loginButton'>
        </div>
        </form>
</div>


</body>

</html>