Files
enviPy-bayer/templates/static/terms_of_use.html
Tobias O ddf1fd3515 Frontpage update (#179)
This PR introduces an overhaul for the front page and login features while keeping the rest of the application intact.

## Major Changes

- TailwindCSS + DaisyUI Integration: Add  modern CSS framework for component-based utility styling
- Build System: Added pnpm for CSS building; can be extended for updated frontend builds in the future
- Navbar + Footer: Redesigned and includable; old version retained for unstyled elements
- Optimized Assets: Added minified and CSS-stylable logos

## New Features

- Static Pages: Added comprehensive mockups of static pages (legal, privacy policy, terms of use, contact, etc.). **Note:** These have to be fixed before a public release, as their content is largely unreviewed and incorrect. Probably best to do in a separate PR that only contains updates to these.
- Discourse API: Implement minimal features based on RestAPI for controllable results.

## Current bugs
- [x] The static pages include the default navbar and footer on the login page. This will likely not work, as users need to access it before logging in; no good workaround so far (problem with Django templating system).
- [ ] The front page predict link is currently non-functional; the redesigned page is almost ready but better done in a separate PR as it also touches Django code.
- [x] Visual bug with the news cards. Still intend to fix for this PR

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#179
Reviewed-by: jebus <lorsbach@envipath.com>
Co-authored-by: Tobias O <tobias.olenyi@envipath.com>
Co-committed-by: Tobias O <tobias.olenyi@envipath.com>
2025-11-12 01:09:39 +13:00

97 lines
4.9 KiB
HTML

{% extends "framework_modern.html" %}
{% load static %}
{% block main_content %}
<div class="max-w-4xl mx-auto px-4 py-8">
<!-- Breadcrumbs -->
<div class="text-sm breadcrumbs mb-4">
<ul>
<li><a href="/">Home</a></li>
<li>Terms of Use</li>
</ul>
</div>
<!-- Main Content -->
<div class="bg-base-100 shadow-xl rounded-lg p-8">
<h1 class="text-4xl font-bold mb-6">Terms of Use</h1>
<div class="prose max-w-none">
<p class="text-lg mb-6">
Welcome to enviPath. By accessing and using this platform, you agree to be bound by these terms of use.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">1. Acceptance of Terms</h2>
<p class="mb-4">
By accessing and using enviPath, you accept and agree to be bound by the terms and provision of this agreement.
If you do not agree to these terms, please do not use our services.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">2. Use License</h2>
<p class="mb-4">
Permission is granted to temporarily access the materials (information or software) on enviPath for personal,
non-commercial research and educational use only. This is the grant of a license, not a transfer of title.
</p>
<p class="mb-4">Under this license you may not:</p>
<ul class="list-disc list-inside mb-4 space-y-2">
<li>Modify or copy the materials</li>
<li>Use the materials for any commercial purpose</li>
<li>Attempt to decompile or reverse engineer any software contained on enviPath</li>
<li>Remove any copyright or other proprietary notations from the materials</li>
</ul>
<h2 class="text-2xl font-semibold mt-8 mb-4">3. Data and Content</h2>
<p class="mb-4">
Users may submit, upload, or otherwise make available data and content to enviPath. By doing so, you grant
enviPath a license to use, modify, publicly perform, publicly display, reproduce, and distribute such content.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">4. Disclaimer</h2>
<p class="mb-4">
The materials on enviPath are provided on an 'as is' basis. enviPath 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.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">5. Limitations</h2>
<p class="mb-4">
In no event shall enviPath 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 enviPath.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">6. Academic Use and Citations</h2>
<p class="mb-4">
If you use enviPath in your research, we request that you cite our work appropriately. Please visit our
<a href="/cite" class="link link-primary">citation page</a> for details.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">7. License Information</h2>
<p class="mb-4">
For detailed license information about enviPath data and software, please refer to the
<a href="https://community.envipath.org/t/envipath-license/109" target="_blank" class="link link-primary">
enviPath License documentation
</a>.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">8. Modifications</h2>
<p class="mb-4">
enviPath may revise these terms of use at any time without notice. By using this platform, you are agreeing
to be bound by the then current version of these terms of use.
</p>
<h2 class="text-2xl font-semibold mt-8 mb-4">9. Contact Information</h2>
<p class="mb-4">
If you have any questions about these Terms of Use, please <a href="/contact" class="link link-primary">contact us</a>.
</p>
<div class="alert alert-info mt-8">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="stroke-current shrink-0 w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>Last updated: 2025</span>
</div>
</div>
</div>
</div>
{% endblock main_content %}