172 lines
5.5 KiB
HTML
172 lines
5.5 KiB
HTML
<!DOCTYPE html>
|
|
<html data-report-errors="1" data-rc="" data-user-agent="" data-login="">
|
|
<head>
|
|
<base href="/">
|
|
|
|
<meta charset="UTF-8">
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/pdf.js/2.4.456/pdf.min.js"></script>
|
|
<script type="text/javascript" src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js"></script>
|
|
<script type="text/javascript">
|
|
pdfjsLib.GlobalWorkerOptions.workerSrc = "//cdnjs.cloudflare.com/ajax/libs/pdf.js/2.4.456/pdf.worker.min.js";
|
|
</script>
|
|
|
|
<script type="text/javascript"
|
|
src="https://alcdn.msauth.net/browser/2.14.2/js/msal-browser.min.js"
|
|
integrity="sha384-ggh+EF1aSqm+Y4yvv2n17KpurNcZTeYtUZUvhPziElsstmIEubyEB6AIVpKLuZgr"
|
|
crossorigin="anonymous">
|
|
</script>
|
|
<script type="text/javascript">
|
|
if (location.hash.includes("id_token")) {
|
|
new UserAgentApplication("1023b9ce-5b09-4f04-98f8-e1ed85a72332", null, null);
|
|
}
|
|
</script>
|
|
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
|
<meta name="description" content="Invoice Clients, Track Work-Time, Get Paid Online.">
|
|
|
|
<!-- 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="invoiceninja_client">
|
|
<link rel="apple-touch-icon" href="icons/Icon-192.png">
|
|
|
|
<title>Invoice Ninja</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
<style>
|
|
|
|
/* https://projects.lukehaas.me/css-loaders/ */
|
|
.loader,
|
|
.loader:before,
|
|
.loader:after {
|
|
border-radius: 50%;
|
|
width: 2.5em;
|
|
height: 2.5em;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
-webkit-animation: load7 1.8s infinite ease-in-out;
|
|
animation: load7 1.8s infinite ease-in-out;
|
|
}
|
|
.loader {
|
|
color: #ffffff;
|
|
font-size: 10px;
|
|
margin: 80px auto;
|
|
position: relative;
|
|
text-indent: -9999em;
|
|
-webkit-transform: translateZ(0);
|
|
-ms-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
-webkit-animation-delay: -0.40s;
|
|
animation-delay: -0.40s;
|
|
}
|
|
.loader:before,
|
|
.loader:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
.loader:before {
|
|
left: -3.5em;
|
|
-webkit-animation-delay: -0.80s;
|
|
animation-delay: -0.80s;
|
|
}
|
|
.loader:after {
|
|
left: 3.5em;
|
|
}
|
|
@-webkit-keyframes load7 {
|
|
0%,
|
|
80%,
|
|
100% {
|
|
box-shadow: 0 2.5em 0 -1.3em;
|
|
}
|
|
40% {
|
|
box-shadow: 0 2.5em 0 0;
|
|
}
|
|
}
|
|
@keyframes load7 {
|
|
0%,
|
|
80%,
|
|
100% {
|
|
box-shadow: 0 2.5em 0 -1.3em;
|
|
}
|
|
40% {
|
|
box-shadow: 0 2.5em 0 0;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="background-color:#888888;">
|
|
<!-- This script installs service_worker.js to provide PWA functionality to
|
|
application. For more information, see:
|
|
https://developers.google.com/web/fundamentals/primers/service-workers -->
|
|
<script>
|
|
var serviceWorkerVersion = null;
|
|
var scriptLoaded = false;
|
|
function loadMainDartJs() {
|
|
if (scriptLoaded) {
|
|
return;
|
|
}
|
|
scriptLoaded = true;
|
|
var scriptTag = document.createElement('script');
|
|
scriptTag.src = 'main.dart.js';
|
|
scriptTag.type = 'application/javascript';
|
|
document.body.append(scriptTag);
|
|
}
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
// Service workers are supported. Use them.
|
|
window.addEventListener('load', function () {
|
|
// Wait for registration to finish before dropping the <script> tag.
|
|
// Otherwise, the browser will load the script multiple times,
|
|
// potentially different versions.
|
|
var serviceWorkerUrl = 'flutter_service_worker.js?v=' + serviceWorkerVersion;
|
|
navigator.serviceWorker.register(serviceWorkerUrl)
|
|
.then((reg) => {
|
|
function waitForActivation(serviceWorker) {
|
|
serviceWorker.addEventListener('statechange', () => {
|
|
if (serviceWorker.state == 'activated') {
|
|
console.log('Installed new service worker.');
|
|
loadMainDartJs();
|
|
}
|
|
});
|
|
}
|
|
if (!reg.active && (reg.installing || reg.waiting)) {
|
|
// No active web worker and we have installed or are installing
|
|
// one for the first time. Simply wait for it to activate.
|
|
waitForActivation(reg.installing ?? reg.waiting);
|
|
} else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) {
|
|
// When the app updates the serviceWorkerVersion changes, so we
|
|
// need to ask the service worker to update.
|
|
console.log('New service worker available.');
|
|
reg.update();
|
|
waitForActivation(reg.installing);
|
|
} else {
|
|
// Existing service worker is still good.
|
|
console.log('Loading app from service worker.');
|
|
loadMainDartJs();
|
|
}
|
|
});
|
|
|
|
// If service worker doesn't succeed in a reasonable amount of time,
|
|
// fallback to plaint <script> tag.
|
|
setTimeout(() => {
|
|
if (!scriptLoaded) {
|
|
console.warn(
|
|
'Failed to load app from service worker. Falling back to plain <script> tag.',
|
|
);
|
|
loadMainDartJs();
|
|
}
|
|
}, 4000);
|
|
});
|
|
} else {
|
|
// Service workers not supported. Just drop the <script> tag.
|
|
loadMainDartJs();
|
|
}
|
|
</script>
|
|
|
|
<center style="padding-top: 150px" id="loader">
|
|
<div class="loader"></div>
|
|
</center>
|
|
|
|
</body>
|
|
</html> |