client-login.blade.php 2.3 KB

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