mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 12:04:00 +00:00
28 lines
1.1 KiB
Twig
28 lines
1.1 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<base href="{{ route('index') }}/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ 'login_page_title'|_ }}</title>
|
|
|
|
<!-- fonts and styles -->
|
|
<link rel="stylesheet" href="/v3-local/css/fonts.css?v={{ FF_VERSION }}">
|
|
<link rel="stylesheet" href="/v3-local/lib/fontawesome-free/css/all.min.css?v={{ FF_VERSION }}">
|
|
<link rel="stylesheet" href="/v3-local/lib/icheck-bootstrap/icheck-bootstrap.min.css?v={{ FF_VERSION }}">
|
|
<link rel="stylesheet" href="/v3-local/dist/css/adminlte.min.css?v={{ FF_VERSION }}">
|
|
</head>
|
|
<body class="hold-transition login-page dark-mode">
|
|
{% block content %}{% endblock %}
|
|
|
|
<!-- jQuery -->
|
|
<script src="v3-local/lib/jquery/jquery.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="v3-local/lib/bootstrap/js/bootstrap.bundle.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="v3-local/dist/js/adminlte.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|