Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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;
24
		}
25
 
26
		.normalshadow{
27
		border: solid 2px grey;
28
		box-shadow: 0 0 10px 3px black;
29
		}
30
 
31
		.errorshadow{
32
		border: solid 1px red;
33
		box-shadow: 0 0 10px 3px red;
34
		}
35
 
36
		.loginButton {
37
            height: 30px;
38
            width: 150px;
39
            font-weight: bold;
40
            font-size: 18px;
41
            background-color: #2789c1;
42
            border: 1px solid blue;
43
            border-radius: 4px;
44
            color: white;
45
		}
46
	</style>
47
</head>
48
 
49
 
50
 
51
<body style="margin: 0;background-color:#333333">
52
<div style="line-height:37px;height:37px;background-color:#333;color:white;border-bottom: 5px solid white;">
53
	<span style="margin-left:20px;font-weight:bold;font-size:15px">SAHOLIC RECHARGE ADMIN CONSOLE</span>
54
</div>
55
 
56
<div id="main" style="width: 100%;min-width:500px;margin: 5px 0 0 0;">
57
	<form action="/rch/admin" id="loginForm" class="$class" method="post">
58
    	<div class="padding-row" style="font-size: 16px;color: red;padding: 15px 0 10px 0px;text-align:center;">
59
			$action.getMessage()
60
    	</div>
61
 
62
    	<div class="row">
63
        	<div class="text" style="width:200px;color:#AAAAAA">Username : </div>
64
        	<div class="input-div">
65
    			<input class="inputbox padding48" style="border-radius:7px;" type="text" name="username">
66
    		</div>
67
        </div>
68
 
69
    	<div class="row">
70
        	<div class="text" style="width:200px;color:#AAAAAA">Password : </div>
71
        	<div class="input-div">
72
    			<input class="inputbox padding48" style="border-radius:7px;" type="password" name="password">
73
    		</div>
74
        </div>
75
 
76
        <div class="row" style="text-align: center;margin-top: 10px;">
77
        	<input type="submit" value="LOGIN" class='loginButton'>
78
        </div>
79
	</form>
80
</div>
81
 
82
 
83
</body>
84
 
85
</html>