auth.blade.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Leadership Health</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <!-- Google Font: Source Sans Pro -->
  10. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  11. <link rel="stylesheet" href="/fontawesome-free-5.13.1-web/css/all.min.css">
  12. <link href="{{ asset('/css/app.css') }}?v={{config('app.asset_version')}}" rel="stylesheet">
  13. <link href="{{ asset('/css/style.css') }}?v={{config('app.asset_version')}}" rel="stylesheet">
  14. <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
  15. <link rel="stylesheet" href="{{ asset('/css/toastr.min.css') }}">
  16. <script src="{{ asset('js/toastr.min.js') }}" type="application/javascript"></script>
  17. </head>
  18. <body class="hold-transition login-page bg-light">
  19. <style>
  20. .auth-branding {
  21. background: #444343 !important;
  22. box-shadow: none !important;
  23. border-bottom: 1px solid #262626;
  24. padding: 0.5rem 0;
  25. margin: 0;
  26. border-top-left-radius: 8px;
  27. border-top-right-radius: 8px;
  28. font-size: 1.4rem;
  29. }
  30. .auth-branding img {
  31. line-height: .8;
  32. margin-left: 0;
  33. margin-right: .5rem;
  34. margin-top: -3px;
  35. max-height: 33px;
  36. }
  37. .login-card-body {
  38. border-bottom-left-radius: 8px;
  39. border-bottom-right-radius: 8px;
  40. }
  41. .login-box {
  42. width: 400px;
  43. margin: 100px auto;
  44. }
  45. .login-content {
  46. border-top-left-radius: 0;
  47. border-top-right-radius: 0;
  48. border-bottom-left-radius: 8px;
  49. border-bottom-right-radius: 8px;
  50. overflow: hidden;
  51. }
  52. </style>
  53. <div class="login-box">
  54. <div class="login-logo auth-branding text-center border-0">
  55. <span class="brand-text font-weight-light text-white">Leadership Health</span>
  56. </div>
  57. <div class="login-content card border-top-0">
  58. <div class="card-body border-0 login-card-body p-0">
  59. @yield('content')
  60. </div>
  61. </div>
  62. </div>
  63. </body>
  64. </html>