Add cookie concent

This commit is contained in:
2024-03-19 15:59:13 +05:00
parent 5bcd39457d
commit 1f8574e9bb
6 changed files with 81 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="tk" dir="ltr" class="h-full font-sans antialiased">
<html lang="{{ app()->getLocale() }}" dir="ltr" class="h-full font-sans antialiased">
<head>
<meta name="theme-color" content="#fff">
<meta charset="utf-8">
@@ -10,7 +10,7 @@
<!-- Styles -->
<link rel="stylesheet" href="/vendor/nova/app.css?id=496e3383c5e2918c7bc875f45870e701">
<link rel="stylesheet" href="/assets/css/auth.css">
<style>.text-underline{text-decoration: underline;}</style>
<link rel="stylesheet" href="/assets/css/cookieconsent.css">
</head>
<body>
<div>
@@ -47,7 +47,7 @@
@yield('content')
<div class="text-center relative" style="top: 4em;">
<a href="{{ route('reset-password') }}" class="text-gray-500 font-bold text-underline">
<a href="/privacy-policy.pdf" class="text-gray-500 font-bold text-underline" target="_blank">
{{ __('Privacy Policy') }}
</a>
</div>
@@ -56,14 +56,9 @@
</div>
<script src="/assets/js/inputmask.min.js"></script>
<script src="/assets/js/sweetalert2.js"></script>
<script src="/assets/js/cookieconsent.js"></script>
<script src="/assets/js/fn.js"></script>
<script>
const phone = document.getElementById('phone');
if (phone) {
new Inputmask("+(\\9\\93)-99-99-99-99").mask(phone);
}
</script>
<script src="/assets/js/app.js"></script>
@stack('js')
</body>