2020-03-28 04:45:11 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Invoice Ninja</title>
|
|
|
|
<meta name="report_errors" content="{{ $report_errors }}">
|
2020-05-11 19:21:23 +02:00
|
|
|
<meta name="google-signin-client_id" content="{{ config('services.google.client_id') }}">
|
2020-06-21 23:30:25 +02:00
|
|
|
<meta name="minimum_client_version" content="{{ config('ninja.minimum_client_version') }}">
|
2020-03-28 04:45:11 +01:00
|
|
|
</head>
|
|
|
|
<body style="background-color:#888888;">
|
|
|
|
|
|
|
|
<script>
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
window.addEventListener('load', function () {
|
|
|
|
navigator.serviceWorker.register('/flutter_service_worker.js');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2020-06-21 23:30:25 +02:00
|
|
|
<script src="main.dart.js?version={{ config('ninja.app_version') }}" type="application/javascript"></script>
|
2020-03-28 04:45:11 +01:00
|
|
|
|
|
|
|
<center style="font-family:Tahoma,Geneva,sans-serif;font-size:28px;color:white;padding-top:100px">
|
|
|
|
Loading...
|
|
|
|
</center>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|