47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
|
|
<!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">
|
|
|
|
<title>Staff Directory</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/github-dark.min.css" rel="stylesheet">
|
|
|
|
<style>
|
|
body {
|
|
background-color: #181a1b;
|
|
color: #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<h1>
|
|
Staff Directory
|
|
</h1>
|
|
|
|
<table class="table" id="directory" style="color: white;">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Title/Department</th>
|
|
<th scope="col">Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="loading" class="alert alert-info" role="alert" style="display: block;">
|
|
Loading... |
|
|
</div>
|
|
|
|
<script src="./script.js"></script>
|
|
</div>
|
|
</body>
|
|
</html>
|