mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <base href="{{ route('index') }}/">
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
 | |
|     <title>Firefly III - Installation and update</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">
 | |
| 
 | |
|     {# 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 }}">
 | |
| 
 | |
|     <link href="v1/lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
 | |
|     <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('v1.partials.favicons') %}
 | |
| 
 | |
| </head>
 | |
| <body class="login-page">
 | |
| <div class="login-box">
 | |
|     <div class="login-logo">
 | |
|         <b>Firefly</b>III<br />
 | |
|         <span style="font-family: monospace;font-size:16pt;">installation and upgrade</span>
 | |
|     </div>
 | |
|     {% block content %}{% endblock %}
 | |
| </div>
 | |
| <script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
 | |
| {% block scripts %}{% endblock %}
 | |
| 
 | |
| <script nonce="{{ JS_NONCE }}">
 | |
|     // Initialize the service worker
 | |
|     if ('serviceWorker' in navigator) {
 | |
|         navigator.serviceWorker.register('serviceworker.js?v={{ FF_VERSION }}', {
 | |
|             scope: '{{ route('index') }}'
 | |
|         }).then(
 | |
|             () => console.log('ServiceWorker registration successful'),
 | |
|             (err) => console.log('ServiceWorker registration failed: ', err)
 | |
|         );
 | |
|     }
 | |
| </script>
 | |
| </body>
 | |
| </html>
 |