join.blade.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Stag | Pro</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. <link href="/noty/noty.css" rel="stylesheet">
  21. <link href="/noty/themes/mint.css" rel="stylesheet">
  22. <script src="/noty/noty.js" type="text/javascript"></script>
  23. <script src="https://cdn.jsdelivr.net/npm/js-cookie@rc/dist/js.cookie.min.js"></script>
  24. </head>
  25. <body class="hold-transition login-page">
  26. <style>
  27. .auth-branding {
  28. background: #444343 !important;
  29. box-shadow: none !important;
  30. border-bottom: 1px solid #262626;
  31. padding: 0.5rem 0;
  32. margin: 0;
  33. border-top-left-radius: 8px;
  34. border-top-right-radius: 8px;
  35. font-size: 1.4rem;
  36. }
  37. .auth-branding img {
  38. line-height: .8;
  39. margin-left: 0;
  40. margin-right: .5rem;
  41. margin-top: -3px;
  42. max-height: 33px;
  43. }
  44. .login-card-body {
  45. border-bottom-left-radius: 8px;
  46. border-bottom-right-radius: 8px;
  47. }
  48. </style>
  49. <div class="login-box">
  50. <div class="login-logo auth-branding text-center border-0">
  51. <img src="/AdminLTE-3.0.5/dist/img/AdminLTELogo.png" alt="AdminLTE Logo" class="brand-image img-circle elevation-3"
  52. style="opacity: .8">
  53. <span class="brand-text font-weight-light text-white"><b>Stag</b> Pro</span>
  54. </div>
  55. <!-- /.login-logo -->
  56. <div class="card">
  57. <div class="card-body login-card-body">
  58. @yield('content')
  59. </div>
  60. <!-- /.login-card-body -->
  61. </div>
  62. </div>
  63. <!-- /.login-box -->
  64. <!-- jQuery -->
  65. <script src="/AdminLTE-3.0.5/plugins/jquery/jquery.min.js"></script>
  66. <!-- Bootstrap 4 -->
  67. <script src="/AdminLTE-3.0.5/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  68. <!-- AdminLTE App -->
  69. <script src="/AdminLTE-3.0.5/dist/js/adminlte.js"></script>
  70. <!-- check if clientSessionID already exists, if so take to meet page -->
  71. <script>
  72. window.onload = function() {
  73. if(localStorage.clientSessionKey) {
  74. window.location = '/meet';
  75. }
  76. }
  77. </script>
  78. </body>
  79. </html>