40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Admin Dashboard</title>
|
|
<link rel="stylesheet" th:href="@{/assets/css/adminDashboard.css}">
|
|
<link rel="stylesheet" th:href="@{/assets/css/style.css}">
|
|
<script th:src="@{/js/render.js}" defer></script>
|
|
<script th:src="@{/js/util.js}" defer></script>
|
|
<script th:src="@{/js/components/header.js}" defer></script>
|
|
<script th:src="@{/js/components/footer.js}" defer></script>
|
|
<link rel="icon" type="image/png" th:href="@{/assets/images/logo/logo.png}" />
|
|
</head>
|
|
|
|
<body onload="renderContent()">
|
|
<div class="container">
|
|
<div class="wrapper">
|
|
<div id="header"></div>
|
|
<main class="main-content">
|
|
<input type="text" id="searchBar" placeholder="search by doctor name" />
|
|
<select id="time">
|
|
<option></option>
|
|
</select>
|
|
<select id="speciality">
|
|
<option></option>
|
|
</select>
|
|
<div id="content"></div>
|
|
</main>
|
|
<div id="footer"></div>
|
|
</div>
|
|
</div>
|
|
<div id="modal" class="modal">
|
|
<span id="closeModal" class="close">×</span>
|
|
<div id="modal-body"></div>
|
|
</div>
|
|
<script type="module" src="../js/services/adminDashboard.js" defer></script>
|
|
<script type="module" src="../js/components/doctorCard.js" defer></script>
|
|
</body>
|
|
|
|
</html> |