mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
29 lines
1011 B
HTML
29 lines
1011 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>IsaApp</title>
|
|
<base href="/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
<link href="/assets/fonts/fonts.css" rel="stylesheet" />
|
|
<link rel="manifest" href="manifest.webmanifest" />
|
|
<meta name="theme-color" content="#1976d2" />
|
|
</head>
|
|
|
|
<body>
|
|
<app-root>
|
|
<div class="grid place-items-center h-screen">
|
|
<div class="grid grid-flow-row gap-4 items-center justify-center">
|
|
<div class="flex flex-col items-center">
|
|
<img class="animate-spin" src="/assets/images/spinner.svg" alt="spinner animation" />
|
|
</div>
|
|
<div id="init-status" class="text-center">App wird geladen</div>
|
|
</div>
|
|
</div>
|
|
</app-root>
|
|
|
|
<noscript>Please enable JavaScript to continue using this application.</noscript>
|
|
</body>
|
|
</html>
|