Files
training-software/frontend/public/index.html
Paperclip CTO 4a46c14857
All checks were successful
CI / lint (push) Successful in 10s
CI / test (push) Successful in 23s
CI / build-container (push) Successful in 8s
feat(frontend): add theming, branding sync, and improved frontend error UX
2026-05-19 09:09:04 +02:00

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>