forked from baron/baron-sso
119 lines
3.2 KiB
HTML
119 lines
3.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<!--
|
|
If you are serving your web app in a path other than the root, change the
|
|
href value below to reflect the base path you are serving from.
|
|
|
|
The path provided below has to start and end with a slash "/" in order for
|
|
it to work correctly.
|
|
|
|
For more details:
|
|
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
|
|
This is a placeholder for base href that will be replaced by the value of
|
|
the `--base-href` argument provided to `flutter build`.
|
|
-->
|
|
<base href="/" />
|
|
|
|
<meta charset="UTF-8" />
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible" />
|
|
<meta name="description" content="바론 SW 포털" />
|
|
|
|
<!-- iOS meta tags & icons -->
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
<meta name="apple-mobile-web-app-title" content="Baron 로그인" />
|
|
<link rel="apple-touch-icon" href="icons/Icon-192.png" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
|
|
<title>Baron 로그인</title>
|
|
<link rel="manifest" href="manifest.json" />
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
background: #f8fafc;
|
|
color: #111827;
|
|
font-family:
|
|
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
|
"Segoe UI", sans-serif;
|
|
}
|
|
|
|
#baron-bootstrap-shell {
|
|
align-items: center;
|
|
background:
|
|
linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98));
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
inset: 0;
|
|
justify-content: center;
|
|
min-height: 100%;
|
|
padding: 32px;
|
|
pointer-events: none;
|
|
position: fixed;
|
|
text-align: center;
|
|
transition: opacity 180ms ease;
|
|
z-index: 0;
|
|
}
|
|
|
|
body.flutter-ready #baron-bootstrap-shell {
|
|
opacity: 0;
|
|
}
|
|
|
|
#baron-bootstrap-shell h1 {
|
|
font-size: clamp(36px, 10vw, 72px);
|
|
font-weight: 800;
|
|
line-height: 1.05;
|
|
margin: 0;
|
|
}
|
|
|
|
#baron-bootstrap-shell p {
|
|
color: #475569;
|
|
font-size: clamp(16px, 4vw, 24px);
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
|
|
#baron-bootstrap-shell .loader {
|
|
animation: baron-spin 880ms linear infinite;
|
|
border: 5px solid #cbd5e1;
|
|
border-top-color: #1e40af;
|
|
border-radius: 50%;
|
|
height: 48px;
|
|
width: 48px;
|
|
}
|
|
|
|
@keyframes baron-spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main id="baron-bootstrap-shell" aria-live="polite">
|
|
<h1>Baron SW Portal</h1>
|
|
<div class="loader" aria-hidden="true"></div>
|
|
<p>Loading sign-in</p>
|
|
</main>
|
|
<script>
|
|
window.addEventListener("flutter-first-frame", function () {
|
|
document.body.classList.add("flutter-ready");
|
|
window.setTimeout(function () {
|
|
document.getElementById("baron-bootstrap-shell")?.remove();
|
|
}, 220);
|
|
});
|
|
</script>
|
|
<script src="flutter_bootstrap.js" async></script>
|
|
</body>
|
|
</html>
|