join.blade.php 958 B

123456789101112131415161718192021222324
  1. @extends('layouts.guest-home')
  2. @section('content')
  3. <div class="d-flex">
  4. <h1 class="font-weight-bold">Consult your doctor from the comfort of your home!</h1>
  5. </div>
  6. <div class="d-flex mt-4 mt-sm-5">
  7. <div class="form-container">
  8. <div class="form">
  9. <h3 class="border-bottom border-success text-center font-weight-bold py-3 m-0">Join Meeting</h3>
  10. <p class="px-4 text-dark m-0 py-3"><b>Mr. John Doe</b> would like you to join him/her on her video
  11. consultation with the doctor/</p>
  12. <div class="px-4 mb-4" autofocus="true">
  13. <input type="text" class="form-control py-3" placeholder="Your name">
  14. </div>
  15. <div class="px-4 pb-4">
  16. <button class="btn btn-success font-weight-bold w-100">Join Meeting</button>
  17. </div>
  18. </div>
  19. </div>
  20. </div>
  21. @endsection