1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <title>Stag | Pro</title>
- <!-- Tell the browser to be responsive to screen width -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="/AdminLTE-3.0.5/plugins/fontawesome-free/css/all.min.css">
- <!-- Ionicons -->
- <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
- <!-- icheck bootstrap -->
- <link rel="stylesheet"
- href="/AdminLTE-3.0.5/plugins/icheck-bootstrap/icheck-bootstrap.min.css">
- <!-- Theme style -->
- <link rel="stylesheet" href="/AdminLTE-3.0.5/dist/css/adminlte.css">
- <!-- Google Font: Source Sans Pro -->
- <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
- <script src="{{ mix('js/app.js') }}" defer></script>
- <link href="{{ mix('css/app.css') }}" rel="stylesheet">
- <link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
- </head>
- <body class="hold-transition login-page">
- <style>
- .auth-branding {
- background: #444343 !important;
- box-shadow: none !important;
- border-bottom: 1px solid #262626;
- padding: 0.5rem 0;
- margin: 0;
- border-top-left-radius: 8px;
- border-top-right-radius: 8px;
- font-size: 1.4rem;
- }
- .auth-branding img {
- line-height: .8;
- margin-left: 0;
- margin-right: .5rem;
- margin-top: -3px;
- max-height: 33px;
- }
- .login-card-body {
- border-bottom-left-radius: 8px;
- border-bottom-right-radius: 8px;
- }
- </style>
- @yield('content')
- <!-- jQuery -->
- <script src="/AdminLTE-3.0.5/plugins/jquery/jquery.min.js"></script>
- <!-- Bootstrap 4 -->
- <script src="/AdminLTE-3.0.5/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
- <!-- AdminLTE App -->
- <script src="/AdminLTE-3.0.5/dist/js/adminlte.js"></script>
- </body>
- </html>
|