start.blade.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>X•Y•Z</title>
  7. <!-- Fonts -->
  8. <link href="https://fonts.googleapis.com/css?family=Nunito:200,600,700" rel="stylesheet">
  9. {{-- Bootstrap --}}
  10. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
  11. <link rel="stylesheet" href="/css/bootstrap.min.css">
  12. <!-- Styles for patient home -->
  13. <style>
  14. html, body {
  15. background-color: #fff;
  16. color: #636b6f;
  17. font-family: 'Nunito', sans-serif;
  18. font-weight: 200;
  19. height: 100vh;
  20. margin: 0;
  21. }
  22. body {
  23. background-image: url(images/patient-home-banner.jpg);
  24. background-size: 100% auto;
  25. background-position: top center;
  26. }
  27. @media (max-width: 900px) {
  28. body {
  29. background-size: auto 100%;
  30. }
  31. }
  32. h1 {
  33. color: #555;
  34. width: 50%;
  35. text-align: center;
  36. }
  37. @media (max-width: 900px) {
  38. h1 {
  39. width: auto;
  40. text-align: center;
  41. font-size: 2rem;
  42. text-shadow: 1px 1px 2px #c0e4e2;
  43. }
  44. }
  45. @media (max-width: 400px) {
  46. h1 {
  47. font-size: 1.75rem;
  48. text-shadow: 1px 1px 2px #c0e4e2;
  49. }
  50. }
  51. .form-container {
  52. width: 50%;
  53. margin-right: auto;
  54. }
  55. @media (max-width: 900px) {
  56. .form-container {
  57. margin: auto;
  58. width: 100%;
  59. }
  60. }
  61. .form-container .form {
  62. background: #ffffffd1;
  63. max-width: 400px;
  64. margin: auto;
  65. border-radius: 4px;
  66. }
  67. .form-container .form h3 {
  68. font-size: 1.3rem;
  69. }
  70. .border-success {
  71. border-color: #44bdad85 !important;
  72. }
  73. .text-dark {
  74. color: #555;
  75. font-weight: 600;
  76. }
  77. .form-container .form input {
  78. border-color: #44bdad85 !important;
  79. }
  80. .form-container .form input:focus {
  81. box-shadow: 0 0 0 0.2rem #44bdad85;
  82. }
  83. </style>
  84. </head>
  85. <body class="px-3 px-md-5 py-5">
  86. {{-- top text --}}
  87. <div class="d-flex">
  88. <h1 class="font-weight-bold">Consult your doctor from the comfort of your home!</h1>
  89. </div>
  90. <div class="d-flex mt-4 mt-sm-5">
  91. <div class="form-container">
  92. <div class="form">
  93. <h3 class="border-bottom border-success text-center font-weight-bold py-3 m-0">Start Meeting</h3>
  94. <p class="px-4 text-dark m-0 py-3">Please enter your name and date of birth to start a meeting.</p>
  95. <div class="px-4 mb-4" autofocus="true">
  96. <input type="text" class="form-control py-3" placeholder="Your name">
  97. </div>
  98. <div class="px-4 mb-4">
  99. <input type="date" class="form-control py-3" placeholder="Your date of birth">
  100. </div>
  101. <div class="px-4 pb-4">
  102. <button class="btn btn-success font-weight-bold w-100">Start Meeting</button>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </body>
  108. </html>