25 lines
852 B
HTML
25 lines
852 B
HTML
<!-- file: crates/ksp-app-backfill-desk/frontend/splash.html -->
|
|
<!-- version: 2 -->
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<link rel="icon" href="imgs/logo.png">
|
|
<link rel="stylesheet" href="sass/splash.scss">
|
|
<title>KSP Backfill Desk — Chargement</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="splash-container" style="opacity: 0;">
|
|
<img id="splash-image" src="imgs/splash.png" alt="Chargement de KSP Backfill Desk">
|
|
<div id="app-name">Backfill</div>
|
|
<div id="debug-info" aria-live="off" hidden></div>
|
|
<div id="messages-container" aria-live="polite"></div>
|
|
</div>
|
|
<script type="module" src="ts/splash.ts" defer></script>
|
|
</body>
|
|
|
|
</html>
|