Peter Muturi 2 éve
szülő
commit
b9af24f0b7

BIN
public/img/ligator-placeholder.png


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 5894 - 0
public/ligator-order-form.pdf


+ 74 - 88
resources/views/app/contact.blade.php

@@ -10,105 +10,91 @@
         </nav>
     </div>
 </div>
-<div class="container py-5 my-4">
-  <div class="row">
-    <div class="col-lg-6 bg-grey p-lg-5 p-4 mb-4" style="border-bottom:7px solid var(--pry-color);">
-      <h4 class="subtitle">Contact us:</h4>
-      <p class="mb-4">If you have any questions about the Snyder HemBand system, hemorrhoid banding, or anything else, you can contact us anytime. We’ll get back to you shortly!</p>
-      <form class="" action="{{ route('submit-contact') }}" method="post" autocomplete="off">
-        @csrf
-        <div class="row">
-          <div class="col-12">
-              @if($errors->any())
-            <div class="alert alert-danger fade show" role="alert">
-                There were errors found!
+<div class="py-5">
+  <div class="container">
+    <div class="row justify-content-center">
+      <div class="col-lg-7 text-center">
+        <h5 class="subtitle">Get In Touch</h5>
+        <p>If you have questions about the Snyder HemBand, our training program, or anything else, please contact us anytime. We’ll get back to you as soon as possible, typically within 1 business day.</p>
+        <p>If you are already a partner and need assistance, please contact one of the following departments:</p>
+      </div>
+    </div>
+  </div>
+</div>
+<div class="bg-light border-bottom">
+  <div class="container py-5">
+    <div class="row justify-content-center">
+      <div class="col-lg-8">
+        <h5 class="header">Contact Us</h5>
+        <form class="" action="{{ route('submit-contact') }}" method="post" autocomplete="off">
+          @csrf
+          <div class="row">
+            <div class="col-12">
+                @if($errors->any())
+              <div class="alert alert-danger fade show" role="alert">
+                  There were errors found!
+              </div>
+              @endif
+              @if(session('success'))
+              <div class="alert alert-success fade show" role="alert">
+                  {{session('success')}}
+              </div>
+              @endif
             </div>
-            @endif
-            @if(session('success'))
-            <div class="alert alert-success fade show" role="alert">
-                {{session('success')}}
+            <div class="col-lg-6 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3" name="name_first" placeholder="First Name" value="{{ old('name_first') }}">
+              @error('name_first')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
+            </div>
+            <div class="col-lg-6 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3" name="name_last" placeholder="Last Name" value="{{ old('name_last') }}">
+              @error('name_last')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
             </div>
-            @endif
-          </div>
-          <div class="col-lg-6 form-group mb-4">
-            <input type="text" class="form-control rounded-0 py-3" name="name_first" placeholder="First Name" value="{{ old('name_first') }}">
-            @error('name_first')
-              <small class="text-warning">{{$message}}</small>
-            @enderror
           </div>
-          <div class="col-lg-6 form-group mb-4">
-            <input type="text" class="form-control rounded-0 py-3" name="name_last" placeholder="Last Name" value="{{ old('name_last') }}">
-            @error('name_last')
-              <small class="text-warning">{{$message}}</small>
-            @enderror
+          <div class="row">
+            <div class="col-lg-6 form-group mb-4">
+              <input type="email" class="form-control rounded-0 py-3" name="email" placeholder="Email Address" value="{{ old('email') }}">
+              @error('email')
+                  <small class="text-warning">{{$message}}</small>
+                @enderror
+            </div>
+            <div class="col-lg-6 form-group mb-4">
+              <input type="text" class="form-control rounded-0 py-3 phone" name="phone" placeholder="Phone Number" value="{{ old('phone') }}">
+              @error('phone')
+                  <small class="text-warning">{{$message}}</small>
+                @enderror
+            </div>
           </div>
-        </div>
-        <div class="row">
-          <div class="col-lg-6 form-group mb-4">
-            <input type="email" class="form-control rounded-0 py-3" name="email" placeholder="Email Address" value="{{ old('email') }}">
-            @error('email')
+
+          <div class="form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3 zip" name="zip" placeholder="Zip Code" value="{{ old('zip') }}">
+            @error('zip')
                 <small class="text-warning">{{$message}}</small>
               @enderror
           </div>
-          <div class="col-lg-6 form-group mb-4">
-            <input type="text" class="form-control rounded-0 py-3 phone" name="phone" placeholder="Phone Number" value="{{ old('phone') }}">
-            @error('phone')
+          <div class="form-group mb-4">
+            <input type="text" class="form-control rounded-0 py-3" name="subject" placeholder="Subject" value="{{ old('subject') }}">
+            @error('subject')
                 <small class="text-warning">{{$message}}</small>
               @enderror
           </div>
-        </div>
-
-        <div class="form-group mb-4">
-          <input type="text" class="form-control rounded-0 py-3 zip" name="zip" placeholder="Zip Code" value="{{ old('zip') }}">
-          @error('zip')
-              <small class="text-warning">{{$message}}</small>
-            @enderror
-        </div>
-        <div class="form-group mb-4">
-          <input type="text" class="form-control rounded-0 py-3" name="subject" placeholder="Subject" value="{{ old('subject') }}">
-          @error('subject')
-              <small class="text-warning">{{$message}}</small>
-            @enderror
-        </div>
-        <div class="form-group mb-4">
-          <textarea name="message" class="form-control rounded-0" placeholder="Message" rows="6">{{ old('message') }}</textarea>
-          @error('message')
-              <small class="text-warning">{{$message}}</small>
-            @enderror
-        </div>
-        <div class="form-group mb-4">
-            {!! htmlFormSnippet() !!}
-            @error('g-recaptcha-response')
-              <small class="text-danger"><i class="fas fa-exclamation-triangle mr-2"></i>Invalid</small>
-            @enderror
-          </div>
-        <button type="submit" class="btn btn-pry w-100 py-3">Submit message</button>
-      </form>
-    </div>
-    <div class="col-lg-5 offset-lg-1">
-      <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7319.087334623804!2d-75.68153637595971!3d39.66958345452699!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c700d1a9f368ed%3A0xe0065e295c0b7653!2s258%20Chapman%20Rd%2C%20Newark%2C%20DE%2019702%2C%20USA!5e0!3m2!1sen!2ske!4v1665057570431!5m2!1sen!2ske" height="350" class="w-100" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
-      <div class="row mt-5">
-        <div class="col-sm-6 mb-4">
-          <h5 class="header m-0">Our Office</h5>
-          <hr class="w-100 my-3">
-          <div class="">
-          <?= config('app.forPatientAddress') ?>
-          </div>
-        </div>
-        <div class="col-sm-6 mb-4">
-          <h5 class="header m-0">Contact</h5>
-          <hr class="w-100 my-3">
-          <h5 class="mb-2">General questions</h5>
-          <div class="mb-4">
-            <a class="text-dark" href="mailto:{{ config('app.forPatientGeneralQuestionEmailAddress') }}">{{ config('app.forPatientGeneralQuestionEmailAddress') }}</a> <br>
-            <a class="text-dark" href="tel:{{ config('app.forPatientGeneralQuestionPhoneNumber') }}">{{ config('app.forPatientGeneralQuestionPhoneNumber') }}</a>
-          </div>
-          <h5 class="mb-2">For physicians</h5>
-          <div class="mb-4">
-            <a class="text-dark" href="mailto:{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}">{{ config('app.forPhysicianGeneralQuestionEmailAddress') }}</a> <br>
-            <a class="text-dark" href="tel:{{ config('app.forPhysicianGeneralQuestionPhoneNumber') }}">{{ config('app.forPhysicianGeneralQuestionPhoneNumber') }}</a>
+          <div class="form-group mb-4">
+            <textarea name="message" class="form-control rounded-0" placeholder="Message" rows="6">{{ old('message') }}</textarea>
+            @error('message')
+                <small class="text-warning">{{$message}}</small>
+              @enderror
           </div>
-        </div>
+          <div class="form-group mb-4">
+              {!! htmlFormSnippet() !!}
+              @error('g-recaptcha-response')
+                <small class="text-danger"><i class="fas fa-exclamation-triangle mr-2"></i>Invalid</small>
+              @enderror
+            </div>
+          <button type="submit" class="btn btn-pry w-100 py-3">Submit message</button>
+        </form>
       </div>
     </div>
   </div>

+ 5 - 5
resources/views/app/physicians/get-trained.blade.php

@@ -17,8 +17,8 @@
     <div class="col-lg-5">
       <h5 class="subtitle">“Schedule a Training” OR “Access Clinical and Staff Training”</h5>
       <p>We’re excited that your practice is interested in offering the Snyder HemBand system to your patients. To provide the best in patient care, we have a number of training modules for physicians, clinical staff, and office staff available to support our practice partners. Our in-person and online module options have been created with the help of leading gastroenterologists.</p>
-      
-      <div class="row mt-5">
+
+      <!-- <div class="row mt-5">
         <div class="col-sm-6 mb-4">
           <h5 class="header m-0">Our Office</h5>
           <hr class="w-100 my-3">
@@ -42,7 +42,7 @@
             <a class="text-dark" href="tel:+1-833-444-8448">+1-833-444-8448</a>
           </div>
         </div>
-      </div>
+      </div> -->
     </div>
     <div class="col-lg-6 bg-grey p-lg-5 p-4 mb-4 offset-lg-1" style="border-bottom:7px solid var(--pry-color);">
       <h4 class="subtitle">Schedule a Training</h4>
@@ -95,7 +95,7 @@
             @enderror
           </div>
         </div>
-        
+
         <div class="form-group mb-4">
           <input type="text" class="form-control rounded-0 py-3 zip" name="zip" placeholder="Zip Code" value="{{ old('zip') }}" required />
           @error('zip')
@@ -163,4 +163,4 @@
 </script>
 
 
-@endsection
+@endsection

+ 1 - 1
resources/views/app/physicians/order-products.blade.php

@@ -39,7 +39,7 @@
       <div class="row">
         <div class="col-lg-4 col-md-6">
           <h5 class="mt-4 mb-3">Ligator Order Form</h5>
-          <a href="#"><img  src="{{asset('img/ligators.jpeg')}}" class="w-75 border border-dark" alt=""> </a>
+          <a href="{{asset('ligator-order-form.pdf')}}" download="Ligator Order Form"><img  src="{{asset('img/ligator-placeholder.png')}}" class="w-75 border border-dark" alt=""> </a>
         </div>
         <div class="col-lg-4 col-md-6">
           <h5 class="mt-4 mb-3">Marketing Materials</h5>

+ 1 - 1
resources/views/app/physicians/order-products/marketing.blade.php

@@ -32,7 +32,7 @@
     <div class="col-lg-8">
       <h4 class="header">Marketing Materials for Your Practice</h4>
       <p class="mt-4">We know that marketing materials are a huge asset in helping patients and staff understand the Snyder HemBand procedure. Because of this, we’re happy to provide a variety of marketing materials at no cost to you or your practice.</p>
-      <p>To place an order, please fill out the form below or submit an order form via fax or email <a href="mailto:info@snyderhemband.org">info@snyderhemband.org</a>.</p>
+      <p>To place an order, please fill out the form below or submit an order form via fax or email <a href="mailto:support@hemband.com">support@hemband.com</a>.</p>
       <div class="bg-light p-4">
         <form class="" action="{{ route('physicians.submit-order-products-marketing') }}" method="post" autocomplete="off">
           @csrf

+ 1 - 1
resources/views/app/physicians/order-products/obp.blade.php

@@ -33,7 +33,7 @@
       <h4 class="header">Order your OBP ANOSPEC Anoscopes with Snyder HemBand</h4>
       <p class="mt-4">We’re pleased to offer OBP ANOSPEC anoscopes through Snyder HemBand.</p>
       <p>The OBP ANOSPEC is a completely hygienic, single-use anoscope that comes ready to use immediately. It features its own obturator and single-use LED light source that doesn’t require assembly or charging.</p>
-      <p>You can <a href="#">order them here</a>, call us at <a href="tel:{{ config('app.forPhysicianGeneralQuestionPhoneNumber') }}">{{ config('app.forPhysicianGeneralQuestionPhoneNumber') }}</a> , or submit an order form via fax or email <a href="mailto:info@snyderhemband.org">info@snyderhemband.org</a>.</p>
+      <p>You can <a href="#">order them here</a>, call us at <a href="tel:{{ config('app.forPhysicianGeneralQuestionPhoneNumber') }}">{{ config('app.forPhysicianGeneralQuestionPhoneNumber') }}</a> , or submit an order form via fax or email <a href="mailto:support@hemband.com">support@hemband.com</a>.</p>
     </div>
   </div>
 </div>

+ 2 - 2
resources/views/app/physicians/practice-support/training.blade.php

@@ -17,7 +17,7 @@
   <div class="container">
     <div class="row justify-content-center">
       <div class="col-lg-5 text-start">
-        <h5 class="subtitle mb-4 text-pry">Become a Snyder HemBand-trained physician today</h5>
+        <h5 class="subtitle mb-4 text-pry">Become a HemBand-trained physician today.</h5>
         <p>We’re excited that your practice is interested in offering the Snyder HemBand system to your patients. To provide the best in patient care, we have a number of training modules for physicians, clinical staff, and office staff available to support our practice partners. Our in-person and online module options have been created with the help of leading gastroenterologists to ensure best-in-class education.</p>
         <p>Fill out the form below to schedule a personalized training session with our team of experts. </p>
       </div>
@@ -138,7 +138,7 @@
           <button type="submit" class="btn btn-pry w-100 py-3">SUBMIT</button>
         </form>
 
-        <p class="mt-lg-5 mt-4 mb-0 text-center">If you are already a partner and need assistance, please contact us at <b><a href="mailto:info@snyderhemband.org">info@snyderhemband.org</a></b> </p>
+        <p class="mt-lg-5 mt-4 mb-0 text-center">If you are already a partner and need assistance, please contact us at <b><a href="mailto:support@hemband.com">support@hemband.com</a></b> </p>
       </div>
     </div>
   </div>

+ 68 - 3
resources/views/app/privacy.blade.php

@@ -19,10 +19,75 @@
     </div>
   </div>
 </div>
-<div class="container py-5">
-  <div class="row">
+<div class="container">
+  <div class="row justify-content-center">
     <div class="col-lg-12">
-      //content here
+      <div class="container py-5">
+        <h3 class="font-weight-light">NOTICE OF PRIVACY PRACTICES</h3>
+        <p class="font-weight-lighter mb-1 font-italic">THIS NOTICE DESCRIBES HOW MEDICAL INFORMATION ABOUT YOU MAY BE USED AND DISCLOSED AND HOW YOU CAN GET ACCESS TO THIS INFORMATION.</p>
+        <p class="font-weight-lighter font-italic">PLEASE REVIEW IT CAREFULLY.</p>
+        <p class="font-weight-light text-secondary">MDE Medical LLC deemed as a covered entity under the federal Health Insurance Portability and Accountability Act of 1996 (“HIPAA”), will be referred to in this Notice of Privacy Practices (“Notice”) as “CVR.” This Notice is created by CVR to describe the ways in which CVR may use and disclose your medical information (called “Protected Health Information” or “PHI”) and to notify you of your rights with respect to PHI in the possession of CVR. Pursuant to the Regulations, and as outlined in this Notice, <strong class="text-dark">CVR is permitted to use or disclose PHI to other parties</strong>. Below are categories describing these uses and disclosures, along with some examples to help you better understand each category.</p>
+        <p class="text-secondary"><strong>Uses and Disclosures for Treatment, Payment and Health Care Operations</strong> </p>
+
+        <p class="font-weight-light text-secondary">CVR may use or disclose your PHI for the purposes of treatment, payment and health care operations, described in more detail below, <strong class="text-dark">without obtaining written authorization from you:</strong> </p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">For Treatment:</strong> CVR may use and disclose PHI in the course of providing, coordinating, or managing your medical treatment, including the disclosure of PHI for treatment activities of other health care providers. These uses and disclosures may take place between physicians, nurses, technicians, and other health care professionals who provide or are otherwise involved in your health care. For example, your primary care physician may share your PHI with a specialist physician whom he/she consults regarding your condition, or to their staff who are assisting in the provision or coordination of your care.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">For Payment:</strong> CVR may use and disclose PHI in order to bill and collect payment for health care services provided to you. For example, CVR may need to give PHI to your health plan in order to be reimbursed for the services provided to you. CVR may also disclose PHI to their business associates, such as billing companies, claims processing companies, and others that assist in processing health claims. CVR may also disclose PHI to other health care providers and health plans for the payment activities of such providers or health plans.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">For Health Care Operations:</strong> CVR may use and disclose PHI as part of our health care operations, including: quality assessment and improvement, or evaluating the treatment and services you receive and the performance of its staff in caring for you. Other activities include provider training, compliance and risk management activities, planning and development, and management and administration. CVR may disclose PHI to doctors, nurses, technicians, attorneys, consultants, accountants, and others for review purposes. These disclosures help ensure that CVR is complying with all applicable laws, and are continuing to provide health care to patients at a high level of quality. CVR may also disclose PHI to other health care providers and health plans for certain of their operations, including their quality assessment and improvement activities, credentialing and peer review or compliance activities.</p>
+
+        <p class="text-secondary"><strong>Sharing PHI Among CVR And Their Medical Staff</strong></p>
+
+        <p class="font-weight-light text-secondary">CVR locations work together with the physicians and other health care providers on staff to provide medical services to you when you are a patient at a CVR location. CVR and the members of its staff will share PHI with each other as needed to perform their joint treatment, payment and health care operations activities.</p>
+
+        <p class="text-secondary"><strong>Other Uses and Disclosures for Which Authorization are Not Require</strong></p>
+
+        <p class="font-weight-light text-secondary">In addition to using or disclosing PHI for treatment, payment and health care operations, CVR may use and disclose PHI without your written authorization under the following circumstances:</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">As Required by Law and Law Enforcement:</strong> CVR may use or disclose PHI when required by law. CVR also may disclose PHI when ordered to in rare situations such as a judicial or administrative proceeding, in response to subpoenas or discovery requests, to identify or locate a suspect, fugitive, material witness, or missing person, about criminal conduct, to report a crime, its location or victims, or the identity, description or location of a person who committed a crime, or for other law enforcement purposes.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">For Public Health Activities and Public Health Risks:</strong> CVR may disclose PHI to government officials in charge of collecting healthcare information, such as reactions to medications or product defects, or to notify persons who may have been exposed to a disease or may be at risk of contracting or spreading a disease or condition.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">For Health Oversight Activities:</strong> CVR may disclose PHI to the government for oversight activities authorized by law, such as audits, investigations, inspections, licensure or disciplinary actions, and other activities necessary for monitoring health care or compliance with government programs or civil rights laws.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">Research:</strong> Under certain circumstances, CVR may use and disclose PHI for medical research purposes.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">To Avoid a Serious Threat to Health or Safety:</strong> CVR may use and disclose PHI to law enforcement or other appropriate persons, to prevent or lessen a serious threat to the health/safety of a person or the public.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">Specialized Government Functions:</strong> CVR may use and disclose PHI of military personnel and veterans under certain circumstances, and may also disclose PHI to authorized federal officials for intelligence, counterintelligence, and other national security activities.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">Appointment Reminders, Health-related Benefits and Services, Limited Marketing Activities:</strong> CVR may use and disclose PHI to remind you of an appointment, or to inform you of treatment alternatives or other health-related benefits and services that may be of interest to you, such as disease management programs. CVR may use and disclose your PHI to encourage you to purchase or use a product or service through face-to-face or written communication, or by giving you a promotional gift of nominal value.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">Disclosures for HIPAA Compliance Investigations:</strong> CVR may disclose your PHI when required to do so in connection with your rights of access to your PHI and to account for certain disclosures of your PHI. CVR must disclose your PHI to the U.S. Department of HHS when requested by the Secretary in order to investigate compliance with privacy regulations issued under HIPAA.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">Regulatory Requirements:</strong> CVR is required by law to maintain the privacy of your PHI, to provide individuals with notice of their legal privacy practice duties with respect to PHI, and to abide by the terms described in this Notice. CVR reserves the right to change the terms of this Notice or privacy policies, and to make changes applicable to all PHI it maintains. CVR will acknowledge Notice changes and make available a revised copy of the Notice upon the patient’s request. A copy of the Notice will be posted in registration and waiting areas.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You Have The Following Rights Regarding Your PHI: You may request that CVR restrict the use and disclosure of your PHI.</strong> CVR is not required to agree to any restriction requests, but will be bound to restrictions to which we agree, except in emergency situations. <strong class="text-dark">You have the right to request that communications of PHI to you from CVR be made by alternative means or locations.</strong> You may request that CVR can communicate with you by cellphone or via e-mail or to an alternate address. CVR can accommodate your request through completion of the CVR Communication Preferences and Message Agreement Form.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to inspect and copy your PHI in the possession of CVR, if you make a request in writing to the CVR Medical Records Director.</strong> Within thirty (30) days of receiving your request (unless extended by an additional thirty (30) days), CVR will inform you of the extent to which your request has or has not been granted. CVR may provide you a summary of the PHI you request if you agree in advance to such a summary. CVR may impose a reasonable fee determined by state law to cover copying, postage, and related costs for copies or summaries of your PHI. If CVR denies access to your PHI, it will explain the basis for denial. If CVR does not maintain the PHI you request, and it knows where that PHI is located, we will tell you how to redirect your request.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to receive notifications whenever a breach of your unsecured PHI occurs.</strong> CVR will provide notification through a written communication.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to restrict disclosure of information to your health plan(s) for services paid directly by you.</strong> You have the right to restrict the release of PHI for services for which you have paid for directly. Your written notification is required.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to designate personal representatives.</strong> You can designate specific individuals – other caregivers or personal representatives—with whom CVR may disclose your PHI. Please complete CVR’s Patient Privacy and HIPPA Protection Form.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to request that CVR amend, correct or supplement your PHI.</strong> Your request must be made in writing to the CVR Medical Records Director and it must explain why you are requesting an amendment to your PHI. Within sixty (60) days of receiving your request (unless extended by an additional thirty (30) days), CVR will inform you of the extent to which your request has or has not been granted. CVR generally can deny your request if your request relates to PHI: (i) not created by the entity; (ii) that is not part of the records the entity maintains; (iii) that is not subject to being inspected by you; or (iv) that is accurate and complete. If your request is denied, CVR will give you a written denial that explains the reason for the denial and your rights to: (i) file a statement disagreeing with the denial; (ii) if you do not file a statement of disagreement, submit a request that future disclosures of the relevant PHI be made with a copy of your request and the entity’s denial attached; and (iii) complain about the denial.
+        </p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to request/receive a list of PHI disclosures CVR has made during the six (6) years prior to your request (but not before April 14, 2003).</strong> The list will not include disclosures (i) for which you have provided a written authorization; (ii) for payment; (iii) made to you; (iv) to persons involved in your health care; (v) for national security or intelligence purposes; (vi) to law enforcement officials; or (vii) of a limited data set. You should submit any such request to the Privacy Officer, and within sixty (60) days of receiving your request (unless extended by an additional thirty (30) days), CVR will respond to you regarding the status of your request. CVR will provide you a list at no charge, but if you make more than one request in a year you will be charged a fee of $25.00 for each additional request.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You have the right to receive a paper copy of this notice upon request, even if you have agreed to receive this notice electronically.</strong> You can review and print a copy of this notice at any CVR Web site via https://mbcoaches.wpengine.com or you may request a paper copy of this notice by contacting the Privacy Officer as described below.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">You may complain to CVR</strong> if you believe your privacy rights with respect to your PHI have been violated by contacting the Privacy Officer and submitting a written complaint, or contact the Endothera Hotline at <a href="tel:(800) 990-5491" target="_blank" class="text-pry">(800) 990-5491</a>. CVR will not retaliate against you for filing a complaint regarding their privacy practices. You also have the right to file a complaint with the Secretary of the Department of Health and Human Services.</p>
+
+        <p class="font-weight-light text-secondary"><strong class="text-dark">If you have any questions about this notice, please contact the CVR Privacy Officer by phone at (202) 921-4287, by email at <a href="mailto:support@endothera.com" target="_blank" class="text-pry">support@endothera.com</a>, or by mail at 303 Twin Dolphin Dr Fl 6th, Redwood City, California, 94065-1497.</strong></p>
+
+        <p class="font-weight-light text-secondary">NOTICE IS EFFECTIVE: 5/1/2020</p>
+      </div>
+
+      </div>
     </div>
   </div>
 </div>

+ 39 - 4
resources/views/app/terms.blade.php

@@ -20,11 +20,46 @@
   </div>
 </div>
 <div class="container py-5">
-  <div class="row">
-    <div class="col-lg-12">
-      //content here
+    <div class="row justify-content-center">
+        <div class="col-lg-112">
+          <p>These Terms and Conditions of Sale (“Terms”) apply to the sale by MDE Medical LLC (“Company”) to the buyer (“Buyer”) of medical and surgical products and services (“Product” or “Products”), notwithstanding any conflicting, contrary or additional terms and conditions in any purchase order or other communication from Buyer. No such conflicting, contrary or additional terms and conditions shall be deemed accepted by Company unless and until Company expressly confirms acceptance in writing.</p>
+          <p>Company reserves the right to further modify these Terms from time to time (the “Modified Terms”) either upon written notification to Buyer by U.S. Mail, electronic mail or by posting any changes on the Company website (www.endothera.com) (the “Company Website”), with the most current Terms on the Company Website and the Effective Date of these Terms to be at the time Buyer thereafter places a Purchase Order.</p>
+          <p>BY ACCESSING OR USING ANY PART OF THE WEBSITE OR PLACING ANY PURCHASE ORDERS, BUYER AGREES THAT BUYER HAS READ, UNDERSTANDS AND AGREES TO BE BOUND BY THESE TERMS AND ANY MODIFIED TERMS, INCLUDING THE DISPUTE RESOLUTION PROCEDURES.  IF BUYER DOES NOT AGREE TO BE SO BOUND, BUYER SHOULD NOT ACCESS OR USE THE WEBSITE OR PLACE ANY PURCHASE ORDERS.</p>
+          <h5>PRODUCT</h5>
+          <p>Company is a distributor of Products and not a designer, developer or a manufacturer. Company tries to be as accurate as possible with the information present on Company Website and other marketing materials. Company will make reasonable efforts to accurately display the attributes of the products Company sells. Company does not warrant that product descriptions or other content is accurate, complete, or error free. Company Website, and all other information, content, and other material made available for any Product through Company on an “AS IS” and “AS AVAILABLE” basis. Company further reserves the right to discontinue, without prior notice, any of its Products and/or replacement parts therefore.</p>
+          <h5>PRICING</h5>
+          <p>Company may change the prices of its Products at any time and without prior notice unless otherwise agreed in writing by Company to expressly provide prior notice to Buyer. Company will make reasonable efforts to provide advance notice when possible. Company's prices and rates exclude taxes, duties, and are without discount unless or otherwise agreed in writing by Company. Company cannot confirm the availability or price of a Product until Buyer places an order. Despite Company’s best efforts, sometimes a Product in Company’s catalog may not be available, the offer may have been misstated, or an item may be mispriced. For any of these reasons, Company may cancel your order or Company may contact Buyer for instructions on the order.</p>
+          <h5>PAYMENT TERMS</h5>
+          <p>Buyer must pay for all Products in accordance with the payment terms set forth on Company’s invoice or order confirmation unless otherwise agreed in writing by Company. The date of receipt of payment by Company shall determine whether this deadline has been met. Any overdue payments shall bear interest at a rate equal to the lesser of: (i) 1.5% per month (18% A.P.R.), or (ii) the maximum amount permitted by law, assessed from the day payment was initially due. In the event Buyer fails to make a payment when due, Buyer shall pay all reasonable costs of collection, including reasonable attorneys’ fees. Buyer agrees to pay a $25.00 service charge on any returned check. Company reserves the right to institute a fee to be paid by Buyer for using a credit or debit card to pay for the Product. In the event that Company does start to charge Buyer a fee for paying for product by credit or debit card Company will notify Buyer in advance, within a reasonable period of time, of said charges. If a payment is not made in accordance with the applicable payment terms, Company may suspend all further deliveries, or require full or partial payment in cash, in advance, on new orders. All prompt pay discounts must be taken at the time of payment of the invoice, with no backdating allowed.  Credit card payments will not apply to or be eligible for prompt pay discounts. Unless specifically directed to the contrary, all payments will be applied to the oldest unpaid invoice first.</p>
+          <h5>DELIVERY</h5>
+          <p>The Products will be shipped “F.O.B. shipping point,”. Company has the right to determine the carrier, method and routing of shipment. Time for delivery is not of the essence. All shipping damage claims must be made directly to the carrier. The applicable freight and handling terms for each order shall be posted on the order form.</p>
+          <p>The Shipping and Delivery rates mentioned on the order form or published elsewhere on Company documents and website are minimum shipping rates for that shipping method and carrier. Actual Shipping costs vary depending on a variety of factors, from package measurements, shipment type, weight, location, and more. Once these variables are calculated, Company will put a price on your shipment. Some shipping carriers do not deliver to PO Box/APO addresses. Also, carrier service restrictions apply. Company does not provide or commit Saturday or Sunday Delivery. All orders placed after 1pm EST will be processed the next business day.</p>
+          <p>Company reserves the right to make delivery in installments.</p>
+          <h5>INSPECTION AND ACCEPTANCE</h5>
+          <p>Buyer will inspect the Products promptly upon receipt for non-conformity for quality, quantity, and damages. Buyer should give a notice to Company for any non-conformity related matter no later than 7 (Seven) business days following its date of delivery. If Buyer has not given notice within such time period, Products shall be deemed accepted by Buyer at the end of the Seventh (7th) business day. Use of the Products, or failure to reject for non-conformity within 7 days of receipt, will not constitute a breach of Buyer’s entire purchase order, and any subset of Products on a purchase order Buyer does not dispute will be paid for in accordance with these Terms.</p>
+          <h5>CANCELLATIONS AND RETURNS</h5>
+          <p>Cancellations or changes to orders by Buyer require Company’s prior written consent. Only products originally purchased from Company or from an authorized supplier (drop-ship) will be considered for return to Company. Products have a return period of up to (30) days from the date of purchase. For a return to be processed, Buyer must request a Return Material Authorization (“RMA”). Any return must be in the original packaging and in unused condition except if approved for failure analysis/warranty evaluation by a Company via RMA. All Approved Returns must be shipped at Buyer’s cost. Product returns which are not Approved Returns, not prepaid, or not otherwise consistent with the Company’s Return Policy will not be accepted by Company.</p>
+          <h5>WARRANTY</h5>
+          <p>ANY WARRANTY ON ANY PRODUCT SOLD THROUGH COMPANY IS PROVIDED BY THE MANUFACTURER OF THAT PRODUCT. PROVISIONS AND LIMITATIONS OF MANUFACTURER’S WARRANTY APPLIES. All items sold by Company are warranted solely by the manufacturer. All items requiring repair or should be sent to the manufacturer directly for service. Company is not liable if the manufacturer fails to perform warranty service. Company is not responsible for any misuse of the products by the Buyer.</p>
+          <p>Company makes no other warranty, express or implied, with respect to goods delivered hereunder, and the warranty constitutes Company’s sole obligation in respect of any lack of conformity of goods delivered hereunder (except title). In particular, Company makes no warranty with respect to the merchantability of goods delivered or their suitability or fitness for any particular purpose.</p>
+          <h5>LIMITATION OF LIABILITY</h5>
+          <p>IN NO EVENT, WHETHER BASED ON BREACH OF WARRANTY OR CONTRACT, NEGLIGENCE, STRICT LIABILITY IN TORT OR ANY OTHER LEGAL THEORY, WILL EITHER PARTY BE LIABLE FOR ANY DIRECT OR INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS TERMS AND CONDITIONS OF SALE, EVEN IF A PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, INCLUDING FOR, WITHOUT LIMITATION: DELAYED SHIPMENT, LOSS OF PROFITS, SAVINGS, OR REVENUE; DAMAGE TO REPUTATION; LOSS OF USE OF A PRODUCT OR ANY ASSOCIATED EQUIPMENT; COST OF CAPITAL; COST OF ANY SUBSTITUTE GOODS, EQUIPMENT, FACILITIES OR SERVICES; DOWNTIME; OR THE CLAIMS OF THIRD PARTIES, INCLUDING BUYER’S CUSTOMERS. TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, COMPANY WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ATTRIBUTABLE TO BUYER'S USE OF ANY PRODUCT PURCHASED THROUGH COMPANY.</p>
+          <h5>INDEMNITY</h5>
+          <p>Buyer agrees to indemnify, defend and hold Company and its parent, subsidiary, or affiliated companies, shareholders, directors, officers, employees, agents, and assignees (“Affiliates”) harmless from and against any expenses incurred by or claims made against Company arising out of any negligent actions of Buyer including but not limited to the maintenance, repair or alteration of any Product, or the improper assembly or incorporation of the Product into any other device, actual or alleged breach or violation of any contract, law, rule, regulation, or by-law; libel, slander or other form of defamation; breach of any provision of these Terms; and acts, errors or omissions of Buyer or any of its agents, servants, employees, contractors, partners, shareholders, Affiliates or representatives.</p>
+          <p>All other products sold by Company, may be the trademarks of their respective manufacturers or owners. To the fullest extent permitted by law, Buyer and Company shall defend, indemnify, and hold each other and their Affiliates harmless from against any and all Claims resulting from allegations of infringement of any patents, copyrights, or similar intellectual property rights related to Products sold under this Terms.</p>
+          <p>For purposes of this indemnification, the term “expenses or claims” shall mean and include (i) all losses, obligations, expenses, actual and consequential damages, taxes and costs reasonably incurred in preparing for, defending or settling any demand, investigation, suit, action, claim, inquiry or proceeding, whether or not a formal inquiry, proceeding or investigation had been commenced; and (ii) reasonable accountants’, legal and expert witness fees, costs of investigation and proof of facts, court costs, other litigation expenses and travel and living expenses.  Buyer shall give Company immediate written notice of any demand, investigation, inquiry, action, suit, proceeding or claim. Company at its sole option shall have the right to defend at Buyer’s expense any such liability or claims in which either Company or Buyer or both are named as defendants, or reasonably are expected to be named, and Company shall not be obligated to mitigate losses. Company’s conduct of the defence shall not diminish Buyer’s obligation to indemnify Company hereunder.  This indemnity shall continue in full force and effect subsequent to and notwithstanding any termination of these Terms.</p>
+          <h5>FORCE MAJEURE</h5>
+          <p>Company shall not be liable for any damage as a result of any delay in performance or nonperformance due to any cause beyond Company’s reasonable control, including, without limitation, an act of God, act of the Buyer, delays caused by Company’s suppliers or subcontractors, embargo or other governmental act, regulation or request, fire, accident, strike, slowdown, war, riot, delay in transportation, or inability to readily obtain necessary labor, materials or manufacturing facilities.</p>
+          <h5>CONFIDENTIALITY / NON-DISCLOSURE</h5>
+          <p>Buyer may become familiar with trade secrets and confidential information of Company which derive independent economic value, actual or potential, from not being generally known to the public or to other persons who can obtain economic value from their disclosure or use (“Confidential Information”).  Buyer agrees not to disclose or utilize any Confidential Information, including without limitation, Product specifications, prices, discounts, manufacturing costs, ideas, technical data, customer lists and sales reports to which Buyer has been privy. Buyer agrees not to disclose quotes, price, discounts and rebates received from Company is solely for Buyer and is considered confidential information. Buyer should not disclose knowingly or unknowingly such information to others.</p>
+          <h5>THIRD PARTY BENEFICIARIES</h5>
+          <p>Nothing in these Terms is intended to benefit any person or entity other than Buyer and Company.</p>
+          <h5>CHOICE OF LAW</h5>
+          <p>These Terms, and any related claims or disputes, will be governed by laws of the State of Maryland, without giving effect to its principles of conflict of laws. Any claim or legal action arising under these Terms will be commenced and maintained in the state or federal court located in the State of Maryland. Company and Buyer agree to appear and consent to such jurisdiction, and waive any objections as to venue. Both Company and Buyer waive their respective right to a trial by jury in any actions relating to Products purchased under these Terms.</p>
+          <h5>ENTIRE AGREEMENT</h5>
+          <p>If any clause or portion of these Terms is held by a court of competent jurisdiction to be illegal, invalid, or unenforceable, the remaining clauses or portions will remain in full force and effect.</p>
+        </div>
     </div>
-  </div>
 </div>
 
 @endsection

Nem az összes módosított fájl került megjelenítésre, mert túl sok fájl változott