2024-07-31 14:48:22 +00:00
|
|
|
<!doctype html>
|
2024-05-18 10:17:16 +00:00
|
|
|
<html>
|
2024-07-31 14:48:22 +00:00
|
|
|
<head>
|
|
|
|
<!--
|
2024-05-18 10:17:16 +00:00
|
|
|
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`.
|
|
|
|
-->
|
2024-07-31 14:48:22 +00:00
|
|
|
<base href="$FLUTTER_BASE_HREF" />
|
2024-05-18 10:17:16 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible" />
|
|
|
|
<meta name="description" content="A new Flutter project." />
|
2024-06-29 14:29:21 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<!-- iOS meta tags & icons -->
|
|
|
|
<meta name="apple-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="solian" />
|
|
|
|
<link rel="apple-touch-icon" href="icons/Icon-192.png" />
|
2024-06-29 14:29:21 +00:00
|
|
|
|
2024-08-01 15:44:07 +00:00
|
|
|
<!-- Cropper.js -->
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.2/cropper.css" />
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.6.2/cropper.min.js"></script>
|
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<!-- Favicon -->
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
2024-06-29 14:29:21 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<!-- Loading styles -->
|
|
|
|
<style>
|
|
|
|
.loader-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
transform: translate(-50%, -50%);
|
2024-06-29 14:29:21 +00:00
|
|
|
}
|
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
.loader {
|
|
|
|
border: 10px solid #f3f3f3;
|
|
|
|
border-top: 10px solid #8f94ca;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
animation: spin 0.35s linear infinite;
|
2024-06-29 14:29:21 +00:00
|
|
|
}
|
2024-05-18 10:17:16 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2024-06-29 14:29:21 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<title>Solian</title>
|
|
|
|
<link rel="manifest" href="manifest.json" />
|
|
|
|
</head>
|
2024-06-29 14:29:21 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<body>
|
|
|
|
<div class="loader-container">
|
|
|
|
<div class="loader"></div>
|
|
|
|
</div>
|
2024-06-29 14:29:21 +00:00
|
|
|
|
2024-07-31 14:48:22 +00:00
|
|
|
<script src="flutter_bootstrap.js" async></script>
|
|
|
|
</body>
|
2024-05-18 10:17:16 +00:00
|
|
|
</html>
|