-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashboard.html
166 lines (130 loc) · 5.64 KB
/
dashboard.html
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="text/html; charset=iso-8859-2" http-equiv="Content-Type">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://kit.fontawesome.com/b99e675b6e.js"></script>
<style>@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif;
}
body{
background-color: #f3f5f9;
}
.wrapper{
display: flex;
position: relative;
}
.wrapper .sidebar{
width: 270px;
height: 100%;
background: #070222;
padding: 2px 0px;
position: fixed;
}
.wrapper .sidebar h2{
color: #fff;
text-transform: uppercase;
text-align: center;
margin-bottom: 20px;
}
.wrapper .sidebar ul li{
padding: 15px;
border-bottom: 4px solid #cecae0;
border-bottom: 4px solid rgba(224, 218, 218, 0.05);
border-top: 4px solid rgba(250, 250, 250, 0.05);
}
.wrapper .sidebar ul li a{
color: #ffffff;
display: block;
font-size: 20px;
}
.wrapper .sidebar ul li a .fas{
width: 30px;
font-size: 20px;
}
.wrapper .sidebar ul li:hover{
background-color: #3a3946;
}
.wrapper .sidebar ul li:hover a{
color: #fff;
}
.wrapper .main_content{
width: 100%;
margin-left: 270px;
}
.wrapper .main_content .header{
padding: 20px;
background: rgb(245, 184, 54);
color: #000000;
border-bottom: 1px solid #000000;
height: 60px;
position: centre;
text-align: left;
font-size: 30px;
}
.wrapper .main_content .info{
margin: 10px;
color: #000000;
line-height: 15px;
position: relative;
}
.mySlides {display:none;}
</style>
</head>
<style>
</style>
</head>
<div class="wrapper">
<div class="sidebar">
<img src="Oorja (1)1.png" height="30%" width="90%" style="padding-left: 25px;" position="top"/>
<ul>
<li><a href="dashboard.html"><i class="fas fa-home"></i>Dashboard</a></li>
<li><a href="activecomplaints.html"><i class="fas fa-exclamation-triangle"></i>Active Complaints</a></li>
<li><a href="complainthistory.html"><i class="fas fa-history"></i>Complaint History</a></li>
<li><a href="consumerdata.html"><i class="fas fa-address-card"></i>Consumer Data</a></li>
<li><a href="divisiondetails.html"><i class="fas fa-users"></i>Division Details</a></li>
<li><a href="contact.html"><i class="fas fa-address-book"></i>Contact</a></li>
</ul>
</div>
<div class="main_content">
<div class="header"><b>Division Office</b></div>
<div class="info">
<p>This website is for receiving the registered complaints that registered through our application Oorja.This website can only be used by our sectional staffs by the regional section office id.</p>
<p> Kerala State Electricity Board Ltd (KSEBLtd) is a public sector undertaking under the Government of Kerala, India, that generates,transmits and distributes the electricity supply in the state. Established in 1957, the agency comes under the authority of the Department of Power. It has been registered under Indian companies act during January 2011</p>
<p>KSEB Ltd has 31 hydro-electric projects, 7 solar projects, 2 diesel power plants & 1 wind farm.Power generation is also undertaken by Captive Mode Projects, Independent Power Mode Projects & Co-generation mode projects other than KSEBL.About 25% of the energy requirement is being met from hydel plants owned and operated by KSEBL .As of December 2019, The total installed capacity is 2823.01 MW
The below list contains power generation projects in Kerala owned by KSEB, Captive Mode Projects, Independent Power Mode Projects & Co-generation mode projects .</p>
</div>
<div class="w3-content w3-section" style="max-width:600px" >
<img class="mySlides" src="night.jpg" style="width:90%">
<img class="mySlides" src="aruvikkara.jpg" style="width:120%" >
<img class="mySlides" src="Subs.jpg" style="width:90%">
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 2000); // Change image every 2 seconds
}
</script>
</div>
</div>
</div>
</body>
</html>