mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
21 lines
613 B
PHP
21 lines
613 B
PHP
|
<!DOCTYPE html>
|
||
|
<html data-report-errors="{{ $report_errors }}" data-rc="{{ $rc }}" data-user-agent="{{ $user_agent }}" data-login="{{ $login }}">
|
||
|
<head>
|
||
|
<!-- Source: https://github.com/invoiceninja/invoiceninja -->
|
||
|
<!-- Version: {{ config('ninja.app_version') }} -->
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{ config('ninja.app_name') }}</title>
|
||
|
<meta name="google-signin-client_id" content="{{ config('services.google.client_id') }}">
|
||
|
|
||
|
@include('react.head')
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body class="h-full">
|
||
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||
|
<div id="root"></div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|