-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
69 lines (61 loc) · 2.51 KB
/
main.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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Main</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Open+Sans:400,300'>
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/icon?family=Material+Icons'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="resources/css/task_style.css">
<link rel="stylesheet" href="resources/css/login_style.css">
<link rel="stylesheet" href="resources/css/boostrap.css">
<style>
.logo{margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
margin-bottom: : 10px;
float: left;}
#search_bar{
}
</style>
</head>
<body>
<div class="header">
<div class="nav">
<div class="lining">
<ul class="navUl">
<img class="logo" src="resources/img/logo2.png" width="100" alt="image" height="70">
<li class="navLi"><a href="Login.html"> LogOut</a></li>
<li class="navLi"><a href="addOfficer.html"> Add Officer</a></li>
<li class="navLi"><a href="AccountInfo.html"> Employee Info</a></li>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search" id="search_bar"/>
</div>
</form>
</ul>
</div>
</div>
</div>
<div class="cont_centrar">
<table class="responstable">
<th>Id</th>
<th>Email</th>
<th>Password</th>
<?php
foreach($result_array as $row) { ?>
<tr>
<td><?=$row["Id"]?></td>
<td><?=$row["Email"]?></td>
<td><?=$row["Password"]?></td>
</tr>
<?php }
?>
</table>
<script src='http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js'></script>
</div>
<script src="js/index.js"></script>
</body>
</html>