start.blade.php 1.1 KB

123456789101112131415161718192021222324252627
  1. @extends('layouts.guest-home')
  2. @section('content')
  3. {{-- top text --}}
  4. <div class="d-flex">
  5. <h1 class="font-weight-bold">Consult your doctor from the comfort of your home!</h1>
  6. </div>
  7. <div class="d-flex mt-4 mt-sm-5">
  8. <div class="form-container">
  9. <div class="form">
  10. <h3 class="border-bottom border-success text-center font-weight-bold py-3 m-0">Start Meeting</h3>
  11. <p class="px-4 text-dark m-0 py-3">Please enter your name and date of birth to start a meeting.</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 mb-4">
  16. <input type="date" class="form-control py-3" placeholder="Your date of birth">
  17. </div>
  18. <div class="px-4 pb-4">
  19. <button class="btn btn-success font-weight-bold w-100">Start Meeting</button>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. @endsection