Files
Tracker/web/index.html

76 lines
2.1 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="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="A faith-centered period and fertility tracking app">
<!-- 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="christian_period_tracker">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png" />
<title>christian_period_tracker</title>
<link rel="manifest" href="manifest.json">
<style>
body {
background-color: #FDFBFA;
/* Matching AppColors.cream */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
.loader {
width: 50px;
height: 50px;
border: 5px solid #FDFBFA;
border-top: 5px solid #E5A4A4;
/* Matching AppColors.rose */
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body id="app-container">
<div id="loading-indicator" class="loader"></div>
<script src="flutter_bootstrap.js" async onerror="alert('Failed to load flutter_bootstrap.js. Check console for details.'); document.getElementById('loading-indicator').style.borderTopColor = 'red';"></script>
</body>
</html>