-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin_access.php
More file actions
41 lines (33 loc) · 1.19 KB
/
admin_access.php
File metadata and controls
41 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="../js/bootstrap.min.js"></script>
<style type="text/css">
.selBut{
color: white;
background-color: blue;
}
.selBut:hover{
color: blue;
background-color: white;
}
</style>
</head>
<body style="margin-top: 100px;">
<center>
<div class="row">
<div class="col-sm-6">
<input type="button" class="selBut" name="" style="width: 250px; height: 250px; margin-right: 50px;" value="search" onclick="location.href='Admin_search/admin_search.php'">
<input type="button" name="" class="selBut" style="width: 250px; height: 250px;" value="power consumption" onclick="location.href='power_consumption/power_consumption.php'">
</div>
</div>
<div class="row" style="margin-top: 50px;">
<div class="col-sm-6">
<input type="button" name="" class="selBut" style="width: 250px; height: 250px;margin-right: 50px;" value="disconnect" onclick="location.href='disconect/html/index.php'">
<input type="button" name="" class="selBut" style="width: 250px; height: 250px;" value="payment" onclick="location.href='payment/html/index.php'">
</div>
</div>
</center>
</body>
</html>