| 7264 |
anupam.sin |
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 |
|
|
|
4 |
#if($action.getMessage() == "")
|
|
|
5 |
#set($class="normalshadow")
|
|
|
6 |
#else
|
|
|
7 |
#set($class="errorshadow")
|
|
|
8 |
#end
|
|
|
9 |
|
|
|
10 |
<head>
|
|
|
11 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
12 |
<link rel="stylesheet" href="css/rechargewebapp_18042013.css" type="text/css" />
|
|
|
13 |
<style>
|
|
|
14 |
.mandatory {
|
|
|
15 |
color:red;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
#loginForm {
|
|
|
19 |
width: 600px;
|
|
|
20 |
overflow: visible;
|
|
|
21 |
margin: 25px;
|
|
|
22 |
border-radius: 15px;
|
|
|
23 |
background-color:black;
|
| 7266 |
anupam.sin |
24 |
padding-top:25px;
|
| 7264 |
anupam.sin |
25 |
}
|
|
|
26 |
|
|
|
27 |
.normalshadow{
|
|
|
28 |
border: solid 2px grey;
|
|
|
29 |
box-shadow: 0 0 10px 3px black;
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
.errorshadow{
|
|
|
33 |
border: solid 1px red;
|
|
|
34 |
box-shadow: 0 0 10px 3px red;
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
.loginButton {
|
|
|
38 |
height: 30px;
|
|
|
39 |
width: 150px;
|
|
|
40 |
font-weight: bold;
|
|
|
41 |
font-size: 18px;
|
|
|
42 |
background-color: #2789c1;
|
|
|
43 |
border: 1px solid blue;
|
|
|
44 |
border-radius: 4px;
|
|
|
45 |
color: white;
|
|
|
46 |
}
|
|
|
47 |
</style>
|
|
|
48 |
</head>
|
|
|
49 |
|
|
|
50 |
|
|
|
51 |
|
|
|
52 |
<body style="margin: 0;background-color:#333333">
|
|
|
53 |
<div style="line-height:37px;height:37px;background-color:#333;color:white;border-bottom: 5px solid white;">
|
|
|
54 |
<span style="margin-left:20px;font-weight:bold;font-size:15px">SAHOLIC RECHARGE ADMIN CONSOLE</span>
|
|
|
55 |
</div>
|
|
|
56 |
|
|
|
57 |
<div id="main" style="width: 100%;min-width:500px;margin: 5px 0 0 0;">
|
|
|
58 |
<form action="/rch/admin" id="loginForm" class="$class" method="post">
|
| 7266 |
anupam.sin |
59 |
|
|
|
60 |
#if($action.getMessage() != "")
|
|
|
61 |
<div class="padding-row" style="font-size: 16px;color: red;padding: 0 0 10px 0px;text-align:center;">
|
| 7264 |
anupam.sin |
62 |
$action.getMessage()
|
|
|
63 |
</div>
|
| 7266 |
anupam.sin |
64 |
#end
|
| 7264 |
anupam.sin |
65 |
<div class="row">
|
|
|
66 |
<div class="text" style="width:200px;color:#AAAAAA">Username : </div>
|
|
|
67 |
<div class="input-div">
|
|
|
68 |
<input class="inputbox padding48" style="border-radius:7px;" type="text" name="username">
|
|
|
69 |
</div>
|
|
|
70 |
</div>
|
|
|
71 |
|
|
|
72 |
<div class="row">
|
|
|
73 |
<div class="text" style="width:200px;color:#AAAAAA">Password : </div>
|
|
|
74 |
<div class="input-div">
|
|
|
75 |
<input class="inputbox padding48" style="border-radius:7px;" type="password" name="password">
|
|
|
76 |
</div>
|
|
|
77 |
</div>
|
|
|
78 |
|
|
|
79 |
<div class="row" style="text-align: center;margin-top: 10px;">
|
|
|
80 |
<input type="submit" value="LOGIN" class='loginButton'>
|
|
|
81 |
</div>
|
|
|
82 |
</form>
|
|
|
83 |
</div>
|
|
|
84 |
|
|
|
85 |
|
|
|
86 |
</body>
|
|
|
87 |
|
|
|
88 |
</html>
|