| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | <!DOCTYPE html>
 | 
					
						
							|  |  |  | <html lang="{{ trans('config.html_language') }}">
 | 
					
						
							|  |  |  | <head>
 | 
					
						
							|  |  |  |     <base href="{{ route('index') }}/">
 | 
					
						
							|  |  |  |     <meta charset="UTF-8">
 | 
					
						
							|  |  |  |     <meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
 | 
					
						
							|  |  |  |     <title>Firefly III</title>
 | 
					
						
							|  |  |  |     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
					
						
							|  |  |  |     <meta name="csrf-token" content="{{ csrf_token() }}">
 | 
					
						
							|  |  |  |     <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
 | 
					
						
							|  |  |  |     <meta name="apple-mobile-web-app-capable" content="yes">
 | 
					
						
							| 
									
										
										
										
											2023-01-29 14:52:22 +01:00
										 |  |  |     <meta name="color-scheme" content="light dark">
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     {# CSS things #}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {# libraries #}
 | 
					
						
							|  |  |  |     <link href="v1/lib/bs/css/bootstrap.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  |     <link href="v1/lib/fa/css/font-awesome.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {# the theme #}
 | 
					
						
							|  |  |  |     <link href="v1/lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | 
					
						
							| 
									
										
										
										
											2023-04-08 06:55:38 +02:00
										 |  |  |     {% if 'browser' == darkMode %}
 | 
					
						
							|  |  |  |         <script nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  |             // If `prefers-color-scheme` is not supported, fall back to light mode.
 | 
					
						
							|  |  |  |             // In this case, light.css will be downloaded with `highest` priority.
 | 
					
						
							|  |  |  |             if (window.matchMedia('(prefers-color-scheme: dark)').media === 'not all') {
 | 
					
						
							|  |  |  |                 document.documentElement.style.display = 'none';
 | 
					
						
							|  |  |  |                 document.head.insertAdjacentHTML(
 | 
					
						
							|  |  |  |                     'beforeend',
 | 
					
						
							|  |  |  |                     '<link rel="stylesheet" href="v1/lib/adminlte/css/skins/skin-light.min.css?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}" onload="document.documentElement.style.display = \'\'">',
 | 
					
						
							|  |  |  |                 );
 | 
					
						
							|  |  |  |             }
 | 
					
						
							|  |  |  |         </script>
 | 
					
						
							| 
									
										
										
										
											2023-09-05 19:34:46 +02:00
										 |  |  |         <link href="v1/lib/adminlte/css/skins/skin-dark.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}" media="(prefers-color-scheme: dark)">
 | 
					
						
							| 
									
										
										
										
											2023-04-08 06:55:38 +02:00
										 |  |  |         <link href="v1/lib/adminlte/css/skins/skin-light.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}" media="(prefers-color-scheme: light)">
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  |     {% if 'dark' == darkMode %}
 | 
					
						
							|  |  |  |         <link href="v1/lib/adminlte/css/skins/skin-dark.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							|  |  |  |     {% if 'light' == darkMode %}
 | 
					
						
							|  |  |  |         <link href="v1/lib/adminlte/css/skins/skin-light.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  |     {% endif %}
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     {# Firefly III customisations #}
 | 
					
						
							|  |  |  |     <link href="v1/css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <!--[if lt IE 9]>
 | 
					
						
							|  |  |  |     <script src="v1/js/lib/html5shiv.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
 | 
					
						
							|  |  |  |     <script src="v1/js/lib/respond.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
 | 
					
						
							|  |  |  |     <![endif]-->
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {# favicons #}
 | 
					
						
							|  |  |  |     {% include('partials.favicons') %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </head>
 | 
					
						
							|  |  |  | <body class="login-page">
 | 
					
						
							|  |  |  | <div class="login-box">
 | 
					
						
							|  |  |  |     <div class="login-logo">
 | 
					
						
							| 
									
										
										
										
											2022-03-30 06:54:59 +02:00
										 |  |  |         <a href="{{ route('index') }}"><strong>Firefly</strong>III</a>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |     </div>
 | 
					
						
							|  |  |  |     {% block content %}{% endblock %}
 | 
					
						
							|  |  |  | </div>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% if config('firefly.tracker_site_id') != '' and config('firefly.tracker_url') != '' %}
 | 
					
						
							|  |  |  |     <!-- This tracker tag is only here because this instance of Firefly III was purposefully configured to include it -->
 | 
					
						
							| 
									
										
										
										
											2024-01-10 01:12:48 +00:00
										 |  |  |     <!-- Your own installation will NOT include it, unless you explicitly configure it to have it. -->
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |     <script type="text/javascript" nonce="{{ JS_NONCE }}">
 | 
					
						
							|  |  |  |         var _paq = window._paq || [];
 | 
					
						
							|  |  |  |         _paq.push(['trackPageView']);
 | 
					
						
							|  |  |  |         _paq.push(['enableLinkTracking']);
 | 
					
						
							| 
									
										
										
										
											2023-09-05 19:34:46 +02:00
										 |  |  |         (function () {
 | 
					
						
							|  |  |  |             var u = "//{{ config('firefly.tracker_url') }}/";
 | 
					
						
							|  |  |  |             _paq.push(['setTrackerUrl', u + 'matomo.php']);
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |             _paq.push(['setSiteId', '{{ config('firefly.tracker_site_id') }}']);
 | 
					
						
							| 
									
										
										
										
											2023-09-05 19:34:46 +02:00
										 |  |  |             var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
 | 
					
						
							|  |  |  |             g.type = 'text/javascript';
 | 
					
						
							|  |  |  |             g.async = true;
 | 
					
						
							|  |  |  |             g.defer = true;
 | 
					
						
							|  |  |  |             g.src = u + 'matomo.js';
 | 
					
						
							|  |  |  |             s.parentNode.insertBefore(g, s);
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  |         })();
 | 
					
						
							|  |  |  |     </script>
 | 
					
						
							| 
									
										
										
										
											2023-09-05 19:34:46 +02:00
										 |  |  |     <noscript><p><img src="//{{ config('firefly.tracker_url') }}/matomo.php?idsite={{ config('firefly.tracker_site_id') }}&rec=1" style="border:0;" alt=""/></p></noscript>
 | 
					
						
							| 
									
										
										
										
											2022-01-29 14:15:34 +01:00
										 |  |  | {% endif %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </body>
 | 
					
						
							|  |  |  | </html>
 |