client.blade.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <!-- CSRF Token -->
  7. <meta name="csrf-token" content="{{ csrf_token() }}">
  8. <title>Stag | Pro</title>
  9. <!-- Tell the browser to be responsive to screen width -->
  10. <meta name="viewport" content="width=device-width, initial-scale=1">
  11. <!-- Font Awesome -->
  12. <link rel="stylesheet" href="/AdminLTE-3.0.5/plugins/fontawesome-free/css/all.min.css">
  13. <!-- Ionicons -->
  14. <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  15. <!-- icheck bootstrap -->
  16. <link rel="stylesheet"
  17. href="/AdminLTE-3.0.5/plugins/icheck-bootstrap/icheck-bootstrap.min.css">
  18. <!-- Theme style -->
  19. <link rel="stylesheet" href="/AdminLTE-3.0.5/dist/css/adminlte.css">
  20. <!-- Google Font: Source Sans Pro -->
  21. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  22. <script src="{{ mix('js/app.js') }}" defer></script>
  23. <link href="{{ mix('css/app.css') }}" rel="stylesheet">
  24. <link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
  25. </head>
  26. <body class="hold-transition login-page">
  27. <style>
  28. .auth-branding {
  29. background: #444343 !important;
  30. box-shadow: none !important;
  31. border-bottom: 1px solid #262626;
  32. padding: 0.5rem 0;
  33. margin: 0;
  34. border-top-left-radius: 8px;
  35. border-top-right-radius: 8px;
  36. font-size: 1.4rem;
  37. }
  38. .auth-branding img {
  39. line-height: .8;
  40. margin-left: 0;
  41. margin-right: .5rem;
  42. margin-top: -3px;
  43. max-height: 33px;
  44. }
  45. .login-card-body {
  46. border-bottom-left-radius: 8px;
  47. border-bottom-right-radius: 8px;
  48. }
  49. </style>
  50. @yield('content')
  51. <!-- jQuery -->
  52. <script src="/AdminLTE-3.0.5/plugins/jquery/jquery.min.js"></script>
  53. <!-- Bootstrap 4 -->
  54. <script src="/AdminLTE-3.0.5/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  55. <!-- AdminLTE App -->
  56. <script src="/AdminLTE-3.0.5/dist/js/adminlte.js"></script>
  57. </body>
  58. </html>