Files
firefly-iii/resources/views/layout/install.twig

65 lines
3.0 KiB
Twig
Raw Normal View History

2022-01-29 14:15:34 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-04-15 10:14:14 +02:00
<title>Firefly III - Installation and update</title>
2022-01-29 14:15:34 +01:00
<base href="{{ route('index') }}/">
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
2023-04-15 10:14:14 +02:00
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="color-scheme" content="light dark">
2022-01-29 14:15:34 +01:00
<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'>
2023-04-15 10:14:14 +02:00
{# CSS things #}
2022-01-29 14:15:34 +01:00
2023-04-15 10:14:14 +02:00
<!-- fonts and styles -->
<link rel="stylesheet" href="v3-local/css/fonts.css?v=6.0.7">
<link rel="stylesheet" href="v3-local/lib/fontawesome-free/css/all.min.css?v=6.0.7">
<link rel="stylesheet" href="v3-local/lib/icheck-bootstrap/icheck-bootstrap.min.css?v=6.0.7">
<link rel="stylesheet" href="v3-local/dist/css/adminlte.min.css?v=6.0.7">
2022-01-29 14:15:34 +01:00
{# favicons #}
{% include('partials.favicons') %}
</head>
2023-04-15 10:14:14 +02:00
<body class="hold-transition login-page dark-mode">
2022-01-29 14:15:34 +01:00
<div class="login-box">
<div class="login-logo">
2023-09-05 19:34:46 +02:00
<strong>Firefly</strong>III<br/>
2022-01-29 14:15:34 +01:00
<span style="font-family: monospace;font-size:16pt;">installation and upgrade</span>
</div>
{% block content %}{% endblock %}
</div>
2023-04-15 10:14:14 +02:00
<div class="text-center text-muted">
<small>
Developed by James Cole, the source code is licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0-or-later</a>.
</small>
</div>
2022-01-29 14:15:34 +01:00
<script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
2023-04-15 10:14:14 +02:00
<script type="text/javascript" src="v1/js/ff/guest.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
2022-01-29 14:15:34 +01:00
{% block scripts %}{% endblock %}
2023-04-15 10:14:14 +02:00
{% 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 -->
<!-- Your own installation will NOT include it, unless you explicitly configure it to have it. -->
2023-04-15 10:14:14 +02: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']);
2023-04-15 10:14:14 +02: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);
2023-04-15 10:14:14 +02: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') }}&amp;rec=1" style="border:0;" alt=""/></p></noscript>
2023-04-15 10:14:14 +02:00
{% endif %}
2022-01-29 14:15:34 +01:00
</body>
</html>