mc.blade.php 778 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html lang="en" class="h-100">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  9. <link rel="stylesheet" href="/css/bootstrap.min.css">
  10. <title>Meeting Center</title>
  11. </head>
  12. <body class="d-flex align-items-stretch h-100">
  13. <div class="row w-100">
  14. <div class="col-9 pr-0">
  15. <iframe src="{{ $page }}" frameborder="0" class="h-100 w-100"></iframe>
  16. </div>
  17. <div class="col-3 border-left">
  18. Meeting stuff goes here
  19. </div>
  20. </div>
  21. </body>
  22. </html>