-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.1.min.js" type="text/javascript"></script>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<!-- Custom dependencies -->
<link href="resources/style.css" rel="stylesheet">
<script src="resources/scripts.js" type="text/javascript"></script>
</head>
<body>
<header class="container-fluid" style="background: #dddddd; padding: 1em; margin-bottom: 1em;">
<div class="container">
<h1>Demo App</h1>
</div>
</header>
<div class="container">
<div class="row">
<h2>Users</h2>
<table class="table table-striped">
<thead>
<th>ID</th>
<th>Name</th>
<th>Username</th>
<th>E-mail</th>
<th>Website</th>
<th>Role</th>
<th>Actions</th>
</thead>
<tbody id="load-data-here">
<!-- initial loader -->
<td colspan="7">
<div class="d-flex justify-content-center">
<div class="spinner-border"></div>
</div>
</td>
</tbody>
</table>
</div>
</div>
</body>
</html>