34 lines
1.7 KiB
PHP
34 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Login - Laravel</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet">
|
|
<link rel="icon" type="image/png" href="{{ asset('img/favicon_unioil.ico') }}">
|
|
<link rel="icon" type="image/png" href="{{ asset('img/favicon_unioil.ico') }}">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="min-vh-100 d-flex">
|
|
<!-- Sider -->
|
|
<div class="col-md-6 d-none d-md-block" style="background: url('/img/bg_cms.png') center / cover no-repeat;"></div>
|
|
<!-- Content and Footer -->
|
|
<div class="col-md-6 d-flex flex-column justify-content-between">
|
|
<div class="p-4 flex-grow-1">
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
|
<footer class="text-center py-3" style="font-size: 12px;">
|
|
<div class="mx-auto px-0 py-4" style="width: 325px; border-top: 1px solid #e0e0e0; text-align: left; color: #8E8E93;">
|
|
By logging in you agree to Unioil's Terms of Service, <br>Privacy Policy and Content Policies.
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
|
|
</body>
|
|
</html> |