-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (135 loc) · 2.91 KB
/
index.html
File metadata and controls
143 lines (135 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Login Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="jquery/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style>
footer{
background-color:#000000;
color: white;
padding: 10px;
position:fixed;
bottom:0;
left:0;
right:0;
}
header{
background-color:#000000;
color:#ffffff;
height:80px;
}
body {
background-image:url("images/2.jpg");
}
* {
box-sizing: border-box;
}
*:focus {
outline: none;
}
.login {
margin: 60px auto;
width: 300px;
}
.login-screen {
background-color: #000;
padding: 20px;
border-radius: 5px;
opacity:0.93;
}
.app-title {
text-align: center;
color: #fff;
}
.login-form {
text-align: center;
}
.control-group {
margin-bottom: 10px;
}
input {
color:#000;
text-align: center;
background-color: #ECF0F1;
border: 2px solid transparent;
border-radius: 3px;
font-size: 16px;
font-weight: 200;
padding: 10px 0;
width: 250px;
transition: border .5s;
}
input:focus {
border: 2px solid #3498DB;
box-shadow: none;
}
.btn {
border: 2px solid transparent;
background: #3498DB;
color: #ffffff;
font-size: 16px;
line-height: 25px;
padding: 10px 0;
text-decoration: none;
text-shadow: none;
border-radius: 3px;
box-shadow: none;
transition: 0.25s;
display: block;
width: 250px;
margin: 0 auto;
}
.btn:hover {
background-color: #2980B9;
}
</style>
<script>
function validate()
{
var myform=document.form1;
if(myform.userid.value=="")
{ alert("Enter User ID");
return false;
}
if(myform.password.value=="")
{alert("Enter Password");
return false;
}
return true;
}
</script>
</head>
<body>
<header class="container-fluid">
<img src="images/logo.png" height="70" style="display:inline-block; float:left;" >
<h1 align="center">Web Based Reporting Portal</h1>
</header>
<div class="login">
<div class="login-screen">
<div class="app-title">
<h1>Login</h1>
</div>
<form action="login1.php" method="POST" name="form1" onsubmit="return validate()">
<div class="login-form">
<div class="control-group">
<input type="text" class="login-field" name="userid" placeholder="Enter UserID" id="login-name">
<label class="login-field-icon fui-user" for="login-name"></label>
</div>
<div class="control-group">
<input type="password" class="login-field" name="password" placeholder="Enter Password"id="login-pass">
<label class="login-field-icon fui-lock" for="login-pass"></label>
</div>
<button type="submit" class="btn btn-primary btn-large btn-block">Login<span class="glyphicon glyphicon-off"></span></button>
</div>
</form>
</div>
</div>
<footer class="container-fluid text-center">
<p style=" font-size:100%;">All rights reserved copyright © 2017 Designed By: Dhananjay Gambhir</p>
</footer>
</body>
</html>