templates/website/refund.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block header %}
  3.     {% include "website/header.html.twig" %}
  4. {% endblock %}
  5. {% block body %}
  6.     <section class="services section-bg mt-3 mb-3">
  7.         <div class="container">
  8.             <div class="section-title">
  9.                 <h2>
  10.                     Refund Policy
  11.                 </h2>
  12.                 <div class="row">
  13.                     <div class="col-sm-8 text-j content">
  14.                         <p>Thank you for choosing EmmKayGas.com. Please read this Refund Policy carefully before making any purchase.</p>
  15.                         <h2>No Refunds</h2>
  16.                         <p>We do not provide refunds for any products or services purchased through EmmKayGas.com.</p>
  17.                         <p>By making a purchase, you acknowledge and agree that all sales are final and no refunds will be issued.</p>
  18.                         <h2>Contact Us</h2>
  19.                         <p>If you have any questions or concerns about this Refund Policy, please
  20.                             <a href="https://emmkaygas.com/contact-us.html">contact us</a>.</p>
  21.                     </div>
  22.                     <div class="col-sm-4">
  23.                         <img class="img-fluid rounded" src="{{ asset('') }}site/flame.jpg" alt="LPG Flame">
  24.                     </div>
  25.                 </div>
  26.             </div>
  27.         </div>
  28.     </section>
  29. {% endblock %}