25 lines
757 B
HTML
25 lines
757 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Training Portal</title>
|
|
<link rel="stylesheet" href="./styles.css">
|
|
</head>
|
|
<body>
|
|
<main class="card">
|
|
<header>
|
|
<img id="company-logo" alt="Company logo" class="logo" hidden>
|
|
<h1 id="company-name">Training Portal</h1>
|
|
<button id="theme-toggle" class="btn-ghost theme-toggle" type="button">Dark Mode</button>
|
|
</header>
|
|
<p id="status">Loading environment…</p>
|
|
<button id="healthcheck">Check API Health</button>
|
|
<pre id="result"></pre>
|
|
</main>
|
|
<script src="./config.js"></script>
|
|
<script src="./theme.js"></script>
|
|
<script src="./app.js"></script>
|
|
</body>
|
|
</html>
|