23 lines
740 B
HTML
23 lines
740 B
HTML
<!doctype html>
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="dark light" />
|
|
<title>ForgeFlow</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app" aria-live="polite">
|
|
<div class="boot-screen">
|
|
<img class="boot-brand-logo" src="./assets/itworx-mark.png" alt="ITWorx.tech"/>
|
|
<strong>Starting ForgeFlow</strong>
|
|
<span>Checking Git and local configuration…</span>
|
|
</div>
|
|
</div>
|
|
<div id="toast-root" class="toast-root" aria-live="assertive"></div>
|
|
<script src="mock-bridge.js"></script>
|
|
<script defer src="app.js"></script>
|
|
</body>
|
|
</html>
|