redditraffler/redditraffler

View on GitHub
app/templates/base/terms-of-service.html

Summary

Maintainability
Test Coverage
{% extends "layouts/base.html" %} {% block content %}
<section class="hero is-small is-reddit">
  <div class="hero-body">
    <div class="container has-text-centered">
      <p class="title has-text-light">Terms of Service</p>
    </div>
  </div>
</section>

<section class="section">
  <div class="container">
    <div class="content">
      <h3>Terms</h3>
      <p>
        By accessing the website at
        <a href="{{ url_for('base.index') }}">https://redditraffler.com</a>, you
        are agreeing to be bound by these terms of service, all applicable laws
        and regulations, and agree that you are responsible for compliance with
        any applicable local laws. If you do not agree with any of these terms,
        you are prohibited from using or accessing this site.
      </p>

      <h3>Use License</h3>
      <p>
        redditraffler is licensed under the MIT license.
        <a
          href="https://github.com/redditraffler/redditraffler/blob/master/LICENSE"
          >See the MIT license on GitHub</a
        >. This license shall automatically terminate if you violate any of
        these restrictions and may be terminated by redditraffler at any time.
        Upon terminating your viewing of these materials or upon the termination
        of this license, you must destroy any downloaded materials in your
        possession whether in electronic or printed format.
      </p>

      <h3>Disclaimer</h3>
      <ol type="a">
        <li>
          The materials on redditraffler's website are provided on an 'as is'
          basis. redditraffler makes no warranties, expressed or implied, and
          hereby disclaims and negates all other warranties including, without
          limitation, implied warranties or conditions of merchantability,
          fitness for a particular purpose, or non-infringement of intellectual
          property or other violation of rights.
        </li>
        <li>
          Further, redditraffler does not warrant or make any representations
          concerning the accuracy, likely results, or reliability of the use of
          the materials on its website or otherwise relating to such materials
          or on any sites linked to this site.
        </li>
      </ol>

      <h3>Limitations</h3>
      <p>
        In no event shall redditraffler or its suppliers be liable for any
        damages (including, without limitation, damages for loss of data or
        profit, or due to business interruption) arising out of the use or
        inability to use the materials on redditraffler's website, even if
        redditraffler or a redditraffler authorized representative has been
        notified orally or in writing of the possibility of such damage. Because
        some jurisdictions do not allow limitations on implied warranties, or
        limitations of liability for consequential or incidental damages, these
        limitations may not apply to you.
      </p>

      <h3>Accuracy of materials</h3>
      <p>
        The materials appearing on redditraffler website could include
        technical, typographical, or photographic errors. redditraffler does not
        warrant that any of the materials on its website are accurate, complete
        or current. redditraffler may make changes to the materials contained on
        its website at any time without notice. However redditraffler does not
        make any commitment to update the materials.
      </p>

      <h3>Links</h3>
      <p>
        redditraffler has not reviewed all of the sites linked to its website
        and is not responsible for the contents of any such linked site. The
        inclusion of any link does not imply endorsement by redditraffler of the
        site. Use of any such linked website is at the user's own risk.
      </p>

      <h3>Modifications</h3>
      <p>
        redditraffler may revise these terms of service for its website at any
        time without notice. By using this website you are agreeing to be bound
        by the then current version of these terms of service.
      </p>

      <h3>Contact Us</h3>
      <p>
        If you have any questions or suggestions about our terms of service, do
        not hesitate to contact us at
        <a href="mailto:admin@redditraffler.com">admin@redditraffler.com</a>.
      </p>
      <p><i>Last modified on March 12, 2018.</i></p>
    </div>
  </div>
</section>
{% endblock %}