start.blade.php 1.0 KB

1234567891011121314151617181920212223242526
  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">Start Meeting</h3>
  10. <p class="px-4 text-dark m-0 py-3">Please enter your name and date of birth to start a meeting.</p>
  11. <div class="px-4 mb-4" autofocus="true">
  12. <input type="text" class="form-control py-3" placeholder="Your name">
  13. </div>
  14. <div class="px-4 mb-4">
  15. <input type="date" class="form-control py-3" placeholder="Your date of birth">
  16. </div>
  17. <div class="px-4 pb-4">
  18. <button class="btn btn-success font-weight-bold w-100">Start Meeting</button>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. @endsection