-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (62 loc) · 2.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Basic Admin Pannel</title>
</head>
<body>
<div id="overlay">
<img src="./img/preloader.gif" alt="Preloader icon" />
</div>
<main>
<div id="table-section">
<form action="/">
<img src='./img/search-icon.svg' alt="Search Icon" />
<input type="text" placeholder="Enter something" name="search-box" id="search-box" value="" onkeyup="searchData()" />
</form>
<div id="table-wrapper">
<div id="table-headers">
<table>
<thead>
<tr>
<th class="column1">Id</th>
<th class="column2">FirstName</th>
<th class="column3">LastName</th>
<th class="column4">Email</th>
<th class="column5">Phone</th>
</tr>
</thead>
</table>
</div>
<div id="table-data">
<table >
<tbody id="table-body">
<!-- Table data -->
</tbody>
</table>
</div>
</div>
</div>
<!-- Details box -->
<div id="info-wrapper">
<h1>Details</h1>
<p>Click on a table item to get detailed information</p>
<div >
<div id="userNameSirname"></div>
<div>
<b>Description: </b>
<textarea cols="50" rows="5" id="discription" readonly>
</textarea>
</div>
<div id="add"></div>
<div id="city"></div>
<div id="state"></div>
<div id="zip"></div>
</div>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>