forked from enviPath/enviPy
feat: add mockup for static pages
This commit is contained in:
@ -176,4 +176,12 @@ urlpatterns = [
|
|||||||
re_path(r"^depict$", v.depict, name="depict"),
|
re_path(r"^depict$", v.depict, name="depict"),
|
||||||
# OAuth Stuff
|
# OAuth Stuff
|
||||||
path("o/userinfo/", v.userinfo, name="oauth_userinfo"),
|
path("o/userinfo/", v.userinfo, name="oauth_userinfo"),
|
||||||
|
# Static Pages
|
||||||
|
re_path(r"^terms$", v.terms_of_use, name="terms_of_use"),
|
||||||
|
re_path(r"^privacy$", v.privacy_policy, name="privacy_policy"),
|
||||||
|
re_path(r"^cookie-policy$", v.cookie_policy, name="cookie_policy"),
|
||||||
|
re_path(r"^about$", v.about_us, name="about_us"),
|
||||||
|
re_path(r"^contact$", v.contact_support, name="contact_support"),
|
||||||
|
re_path(r"^jobs$", v.jobs, name="jobs"),
|
||||||
|
re_path(r"^cite$", v.cite, name="cite"),
|
||||||
]
|
]
|
||||||
|
|||||||
@ -2699,3 +2699,46 @@ def userinfo(request):
|
|||||||
"email_verified": user.is_active,
|
"email_verified": user.is_active,
|
||||||
}
|
}
|
||||||
return JsonResponse(res)
|
return JsonResponse(res)
|
||||||
|
|
||||||
|
|
||||||
|
# Static Pages
|
||||||
|
def terms_of_use(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - Terms of Use"
|
||||||
|
return render(request, "static/terms_of_use.html", context)
|
||||||
|
|
||||||
|
|
||||||
|
def privacy_policy(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - Privacy Policy"
|
||||||
|
return render(request, "static/privacy_policy.html", context)
|
||||||
|
|
||||||
|
|
||||||
|
def cookie_policy(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - Cookie Policy"
|
||||||
|
return render(request, "static/cookie_policy.html", context)
|
||||||
|
|
||||||
|
|
||||||
|
def about_us(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - About Us"
|
||||||
|
return render(request, "static/about_us.html", context)
|
||||||
|
|
||||||
|
|
||||||
|
def contact_support(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - Contact & Support"
|
||||||
|
return render(request, "static/contact.html", context)
|
||||||
|
|
||||||
|
|
||||||
|
def jobs(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - Jobs & Careers"
|
||||||
|
return render(request, "static/jobs.html", context)
|
||||||
|
|
||||||
|
|
||||||
|
def cite(request):
|
||||||
|
context = get_base_context(request)
|
||||||
|
context["title"] = "enviPath - How to Cite"
|
||||||
|
return render(request, "static/cite.html", context)
|
||||||
|
|||||||
@ -4,25 +4,25 @@
|
|||||||
<footer class="footer sm:footer-horizontal p-10">
|
<footer class="footer sm:footer-horizontal p-10">
|
||||||
<nav>
|
<nav>
|
||||||
<h6 class="footer-title">Services</h6>
|
<h6 class="footer-title">Services</h6>
|
||||||
<a class="link link-hover">Predict</a>
|
<a class="link link-hover" href="/">Predict</a>
|
||||||
<a class="link link-hover">Search</a>
|
<a class="link link-hover" href="/search">Search</a>
|
||||||
<a class="link link-hover">Browse</a>
|
<a class="link link-hover" href="/package">Browse</a>
|
||||||
<a class="link link-hover">Modelling</a>
|
<a class="link link-hover" href="/model">Modelling</a>
|
||||||
<a href="https://wiki.envipath.org/" target="_blank" class="link link-hover">Documentation</a>
|
<a href="https://wiki.envipath.org/" target="_blank" class="link link-hover">Documentation</a>
|
||||||
</nav>
|
</nav>
|
||||||
<nav>
|
<nav>
|
||||||
<h6 class="footer-title">Company</h6>
|
<h6 class="footer-title">Company</h6>
|
||||||
<a class="link link-hover">About us</a>
|
<a class="link link-hover" href="/about">About us</a>
|
||||||
<a class="link link-hover">Support</a>
|
<a class="link link-hover" href="/contact">Support</a>
|
||||||
<a class="link link-hover">Contact</a>
|
<a class="link link-hover" href="/contact">Contact</a>
|
||||||
<a class="link link-hover">Jobs</a>
|
<a class="link link-hover" href="/jobs">Jobs</a>
|
||||||
</nav>
|
</nav>
|
||||||
<nav>
|
<nav>
|
||||||
<h6 class="footer-title">Legal</h6>
|
<h6 class="footer-title">Legal</h6>
|
||||||
<a class="link link-hover" href="https://community.envipath.org/t/envipath-license/109" target="_blank">Terms of use</a>
|
<a class="link link-hover" href="/terms">Terms of use</a>
|
||||||
<a class="link link-hover">Privacy policy</a>
|
<a class="link link-hover" href="/privacy">Privacy policy</a>
|
||||||
<a class="link link-hover">Cookie policy</a>
|
<a class="link link-hover" href="/cookie-policy">Cookie policy</a>
|
||||||
<a class="link link-hover" href="#" id="citeButton">Cite enviPath</a>
|
<a class="link link-hover" href="/cite">Cite enviPath</a>
|
||||||
</nav>
|
</nav>
|
||||||
</footer>
|
</footer>
|
||||||
<footer class="footer border-neutral-300 border-t-2 px-10 py-4">
|
<footer class="footer border-neutral-300 border-t-2 px-10 py-4">
|
||||||
|
|||||||
@ -5,8 +5,9 @@
|
|||||||
<!-- Hero Section with Logo and Search -->
|
<!-- Hero Section with Logo and Search -->
|
||||||
<section class="hero h-fit max-w-5xl w-full shadow-none mx-auto relative">
|
<section class="hero h-fit max-w-5xl w-full shadow-none mx-auto relative">
|
||||||
|
|
||||||
<div class="hero min-h-[calc(100vh*0.4)]"
|
<div class="hero min-h-[calc(100vh*0.4)] bg-gradient-to-br from-primary-800 to-primary-600"
|
||||||
style="background-image: url('{% static "/images/hero.png" %}'); background-size: cover; background-position: center;">
|
style="background-image: url('{% static "/images/hero.png" %}'); background-size: cover; background-position: center;"
|
||||||
|
>
|
||||||
<div class="hero-overlay"></div>
|
<div class="hero-overlay"></div>
|
||||||
<!-- Predict Pathway text over the image -->
|
<!-- Predict Pathway text over the image -->
|
||||||
<div class="absolute bottom-40 left-1/8 -translate-x-8 z-10">
|
<div class="absolute bottom-40 left-1/8 -translate-x-8 z-10">
|
||||||
|
|||||||
132
templates/static/about_us.html
Normal file
132
templates/static/about_us.html
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
{% 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>About Us</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<div class="bg-base-100 shadow-xl rounded-lg p-8">
|
||||||
|
<h1 class="text-4xl font-bold mb-6">About enviPath</h1>
|
||||||
|
|
||||||
|
<div class="prose max-w-none">
|
||||||
|
<!-- Hero Image/Graphic -->
|
||||||
|
<div class="mb-8">
|
||||||
|
<img src="{% static '/images/ep-rule-artwork.png' %}" alt="enviPath System" class="w-full max-w-2xl mx-auto rounded-lg shadow-md" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="text-lg mb-6">
|
||||||
|
enviPath is a comprehensive database and prediction system for the microbial biotransformation of
|
||||||
|
organic environmental contaminants. Since 2015, we have been at the forefront of computational
|
||||||
|
environmental chemistry, helping researchers understand and predict biodegradation pathways.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Our Mission</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Our mission is to advance environmental science through innovative computational tools that predict
|
||||||
|
and analyze the biotransformation of chemical compounds. We strive to provide researchers, regulators,
|
||||||
|
and industry professionals with accurate, accessible tools for understanding environmental fate and behavior.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">What We Offer</h2>
|
||||||
|
<div class="grid md:grid-cols-2 gap-6 mb-6">
|
||||||
|
<div class="card bg-base-200 shadow-md">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-primary">Pathway Database</h3>
|
||||||
|
<p>Access experimentally observed biotransformation pathways and reactions from curated scientific literature.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card bg-base-200 shadow-md">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-primary">Prediction System</h3>
|
||||||
|
<p>Use our relative reasoning models to predict likely biotransformation pathways and products for new compounds.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card bg-base-200 shadow-md">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-primary">Machine Learning Models</h3>
|
||||||
|
<p>Leverage advanced ML algorithms trained on extensive biodegradation data for accurate predictions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card bg-base-200 shadow-md">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-primary">Community Platform</h3>
|
||||||
|
<p>Join our active community of researchers to share knowledge, discuss findings, and collaborate.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Our Technology</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
enviPath employs a unique combination of rule-based and machine learning approaches to predict
|
||||||
|
biotransformation pathways:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li><strong>Relative Reasoning:</strong> Uses structural similarity to known biotransformations</li>
|
||||||
|
<li><strong>Rule-Based Systems:</strong> Applies expert-curated transformation rules</li>
|
||||||
|
<li><strong>Machine Learning:</strong> Leverages neural networks for pattern recognition</li>
|
||||||
|
<li><strong>Hybrid Models:</strong> Combines multiple approaches for optimal accuracy</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Our Partners</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
enviPath is backed by leading research institutions and collaborators:
|
||||||
|
</p>
|
||||||
|
<div class="flex flex-wrap justify-center items-center gap-8 my-8">
|
||||||
|
<img src="{% static '/images/uoa-logo-small.png' %}" alt="The University of Auckland" class="h-20 object-contain" />
|
||||||
|
<img src="{% static '/images/logo-eawag.svg' %}" alt="Eawag" class="h-16 object-contain" />
|
||||||
|
<img src="{% static '/images/uzh-logo.svg' %}" alt="University of Zurich" class="h-20 object-contain" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Our Team</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
enviPath is developed and maintained by a dedicated team of computational chemists, environmental
|
||||||
|
scientists, and software engineers. Our interdisciplinary approach ensures that the platform meets
|
||||||
|
the needs of the scientific community while remaining accessible and user-friendly.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Research Impact</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Since its inception, enviPath has contributed to numerous scientific publications and environmental
|
||||||
|
assessments. Our tools are used by:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li>Academic researchers in environmental chemistry and toxicology</li>
|
||||||
|
<li>Regulatory agencies for chemical risk assessment</li>
|
||||||
|
<li>Chemical manufacturers for product development and safety evaluation</li>
|
||||||
|
<li>Environmental consultants for contamination studies</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Open Science Commitment</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We are committed to open science principles. enviPath provides free access to our database and
|
||||||
|
prediction tools for academic research. We actively contribute to the scientific community through
|
||||||
|
publications, open-source software, and collaboration.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="card bg-primary text-primary-content mt-8">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title">Get Involved</h3>
|
||||||
|
<p>Join our community, contribute data, or collaborate on research projects.</p>
|
||||||
|
<div class="card-actions justify-end mt-4">
|
||||||
|
<a href="https://community.envipath.org/" target="_blank" class="btn btn-secondary">Visit Community</a>
|
||||||
|
<a href="/contact" class="btn btn-ghost">Contact Us</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Publications</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
To learn more about the science behind enviPath, please visit our
|
||||||
|
<a href="/cite" class="link link-primary">citations page</a> for key publications and how to cite our work.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock main_content %}
|
||||||
203
templates/static/cite.html
Normal file
203
templates/static/cite.html
Normal file
@ -0,0 +1,203 @@
|
|||||||
|
{% 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>How to Cite enviPath</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<div class="bg-base-100 shadow-xl rounded-lg p-8">
|
||||||
|
<h1 class="text-4xl font-bold mb-6">How to Cite enviPath</h1>
|
||||||
|
|
||||||
|
<div class="prose max-w-none">
|
||||||
|
<p class="text-lg mb-6">
|
||||||
|
If you use enviPath in your research, please cite our work. Citations help us demonstrate the
|
||||||
|
impact of our platform and support continued development and maintenance.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="alert alert-info mb-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>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-bold">Quick Reference</h3>
|
||||||
|
<div class="text-sm">The citation depends on which specific tools or models you used. Please cite the relevant publications below.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Main Platform Citation</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you use the enviPath platform in general, please cite:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="card bg-base-200 mb-6">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="font-semibold mb-2">enviPath - The Environmental Contaminant Biotransformation Pathway Resource</h3>
|
||||||
|
<p class="text-sm mb-4">
|
||||||
|
<strong>Authors:</strong> Wicker, J., Lorsbach, T., Gütlein, M., Schmid, E., Latino, D.,
|
||||||
|
Kramer, S., Fenner, K.<br>
|
||||||
|
<strong>Journal:</strong> Nucleic Acids Research, 44(D1), D502-D508<br>
|
||||||
|
<strong>Year:</strong> 2016<br>
|
||||||
|
<strong>DOI:</strong> <a href="https://doi.org/10.1093/nar/gkv1229" target="_blank" class="link link-primary">10.1093/nar/gkv1229</a>
|
||||||
|
</p>
|
||||||
|
<div class="collapse collapse-arrow bg-base-300">
|
||||||
|
<input type="checkbox" />
|
||||||
|
<div class="collapse-title font-medium text-sm">
|
||||||
|
Show BibTeX
|
||||||
|
</div>
|
||||||
|
<div class="collapse-content">
|
||||||
|
<pre class="text-xs overflow-x-auto"><code>@article{wicker2016envipath,
|
||||||
|
title={enviPath--the environmental contaminant biotransformation pathway resource},
|
||||||
|
author={Wicker, J{\"o}rg and Lorsbach, Tim and G{\"u}tlein, Martin and Schmid, Emanuel and Latino, Diogo and Kramer, Stefan and Fenner, Kathrin},
|
||||||
|
journal={Nucleic Acids Research},
|
||||||
|
volume={44},
|
||||||
|
number={D1},
|
||||||
|
pages={D502--D508},
|
||||||
|
year={2016},
|
||||||
|
publisher={Oxford University Press},
|
||||||
|
doi={10.1093/nar/gkv1229}
|
||||||
|
}</code></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Pathway Prediction System</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you use the pathway prediction functionality, please also cite:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="card bg-base-200 mb-6">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="font-semibold mb-2">Predicting Biodegradation Pathways Using a Hybrid Relative Reasoning Model</h3>
|
||||||
|
<p class="text-sm mb-4">
|
||||||
|
<strong>Authors:</strong> Wicker, J., Fenner, K., Ellis, L., Kramer, S.<br>
|
||||||
|
<strong>Journal:</strong> Biotechnology and Bioengineering, 110(3), 837-846<br>
|
||||||
|
<strong>Year:</strong> 2013<br>
|
||||||
|
<strong>DOI:</strong> <a href="https://doi.org/10.1002/bit.24744" target="_blank" class="link link-primary">10.1002/bit.24744</a>
|
||||||
|
</p>
|
||||||
|
<div class="collapse collapse-arrow bg-base-300">
|
||||||
|
<input type="checkbox" />
|
||||||
|
<div class="collapse-title font-medium text-sm">
|
||||||
|
Show BibTeX
|
||||||
|
</div>
|
||||||
|
<div class="collapse-content">
|
||||||
|
<pre class="text-xs overflow-x-auto"><code>@article{wicker2013predicting,
|
||||||
|
title={Predicting biodegradation pathways using a hybrid relative reasoning model},
|
||||||
|
author={Wicker, J{\"o}rg and Fenner, Kathrin and Ellis, Lynda and Kramer, Stefan},
|
||||||
|
journal={Biotechnology and Bioengineering},
|
||||||
|
volume={110},
|
||||||
|
number={3},
|
||||||
|
pages={837--846},
|
||||||
|
year={2013},
|
||||||
|
publisher={Wiley Online Library},
|
||||||
|
doi={10.1002/bit.24744}
|
||||||
|
}</code></pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Machine Learning Models</h2>
|
||||||
|
|
||||||
|
<h3 class="text-xl font-semibold mt-6 mb-3">enviPath-Transformer (Latest ML Model)</h3>
|
||||||
|
<div class="card bg-base-200 mb-6">
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="text-sm mb-2">
|
||||||
|
If you use the Transformer-based prediction model, please cite:
|
||||||
|
</p>
|
||||||
|
<p class="text-sm mb-4">
|
||||||
|
<strong>Authors:</strong> Probst, D., Manica, M., Nana Teukam, Y.G., Castrogiovanni, A.,
|
||||||
|
Paratore, F., Laino, T.<br>
|
||||||
|
<strong>Journal:</strong> [Journal information]<br>
|
||||||
|
<strong>Year:</strong> 2022<br>
|
||||||
|
<strong>Note:</strong> Please check the latest publication details
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 class="text-xl font-semibold mt-6 mb-3">Relative Reasoning Models</h3>
|
||||||
|
<div class="card bg-base-200 mb-6">
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="text-sm mb-2">
|
||||||
|
For relative reasoning and machine learning approaches:
|
||||||
|
</p>
|
||||||
|
<p class="text-sm mb-4">
|
||||||
|
<strong>Authors:</strong> Fenner, K., Gao, J., Kramer, S., Ellis, L., Wackett, L.<br>
|
||||||
|
<strong>Journal:</strong> Environmental Science & Technology, 42(15), 5761-5767<br>
|
||||||
|
<strong>Year:</strong> 2008<br>
|
||||||
|
<strong>DOI:</strong> <a href="https://doi.org/10.1021/es800408g" target="_blank" class="link link-primary">10.1021/es800408g</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Package-Specific Citations</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you use data from a specific package within enviPath, please also acknowledge the package creators
|
||||||
|
and cite any relevant publications associated with that package. Package-specific citation information
|
||||||
|
is available on each package's detail page.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Example Acknowledgment Text</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
You may use the following text in your acknowledgments section:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="card bg-base-200 mb-6">
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="italic text-sm">
|
||||||
|
"Biotransformation pathway predictions were performed using enviPath
|
||||||
|
(<a href="https://envipath.org" target="_blank" class="link link-primary">https://envipath.org</a>),
|
||||||
|
a database and prediction system for microbial biotransformation of organic environmental contaminants."
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Additional Resources</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
For a complete list of publications related to enviPath, please visit:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-6 space-y-2">
|
||||||
|
<li>
|
||||||
|
<a href="https://community.envipath.org/" target="_blank" class="link link-primary">
|
||||||
|
enviPath Community - Publications Section
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://wiki.envipath.org/" target="_blank" class="link link-primary">
|
||||||
|
enviPath Documentation - References
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="alert alert-success 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="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-bold">Thank You!</h3>
|
||||||
|
<div class="text-sm">
|
||||||
|
Thank you for citing enviPath. Your citations help demonstrate the impact of our work and
|
||||||
|
enable us to continue providing this resource to the scientific community.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="divider my-8"></div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Questions?</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you're unsure which papers to cite or have questions about citations, please
|
||||||
|
<a href="/contact" class="link link-primary">contact us</a> or ask on our
|
||||||
|
<a href="https://community.envipath.org/" target="_blank" class="link link-primary">community forums</a>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock main_content %}
|
||||||
169
templates/static/contact.html
Normal file
169
templates/static/contact.html
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
{% 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>Contact & Support</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<div class="bg-base-100 shadow-xl rounded-lg p-8">
|
||||||
|
<h1 class="text-4xl font-bold mb-6">Contact & Support</h1>
|
||||||
|
|
||||||
|
<div class="prose max-w-none">
|
||||||
|
<p class="text-lg mb-6">
|
||||||
|
We're here to help! Whether you have questions about using enviPath, need technical support,
|
||||||
|
or want to discuss collaboration opportunities, we'd love to hear from you.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- Contact Methods Grid -->
|
||||||
|
<div class="grid md:grid-cols-2 gap-6 mb-8 not-prose">
|
||||||
|
<!-- Community Support -->
|
||||||
|
<div class="card bg-primary text-primary-content shadow-lg">
|
||||||
|
<div class="card-body">
|
||||||
|
<h2 class="card-title">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8h2a2 2 0 012 2v6a2 2 0 01-2 2h-2v4l-4-4H9a1.994 1.994 0 01-1.414-.586m0 0L11 14h4a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2v4l.586-.586z" />
|
||||||
|
</svg>
|
||||||
|
Community Forums
|
||||||
|
</h2>
|
||||||
|
<p>Get help from our active community of users and developers.</p>
|
||||||
|
<div class="card-actions justify-end">
|
||||||
|
<a href="https://community.envipath.org/" target="_blank" class="btn btn-secondary">Visit Forums</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Documentation -->
|
||||||
|
<div class="card bg-secondary text-secondary-content shadow-lg">
|
||||||
|
<div class="card-body">
|
||||||
|
<h2 class="card-title">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253" />
|
||||||
|
</svg>
|
||||||
|
Documentation
|
||||||
|
</h2>
|
||||||
|
<p>Browse our comprehensive documentation and tutorials.</p>
|
||||||
|
<div class="card-actions justify-end">
|
||||||
|
<a href="https://wiki.envipath.org/" target="_blank" class="btn btn-accent">Read Docs</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Get Support</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
For the fastest response, we recommend using our community forums where you can:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-6 space-y-2">
|
||||||
|
<li>Ask questions and get answers from the community</li>
|
||||||
|
<li>Report bugs or technical issues</li>
|
||||||
|
<li>Request new features</li>
|
||||||
|
<li>Share your research and findings</li>
|
||||||
|
<li>Find tutorials and how-to guides</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="alert alert-info mb-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>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-bold">Before Contacting Support</h3>
|
||||||
|
<div class="text-sm">Please check our documentation and search the community forums for existing answers.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Business & Collaboration Inquiries</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
For business inquiries, partnership opportunities, or custom development requests, please reach out
|
||||||
|
through our community platform or LinkedIn.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="card bg-base-200 mb-8">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title">enviPath Ltd.</h3>
|
||||||
|
<p>Biodegradation prediction since 2015</p>
|
||||||
|
<div class="flex gap-4 mt-4">
|
||||||
|
<a href="https://www.linkedin.com/company/envipath/" target="_blank" class="btn btn-outline btn-sm">
|
||||||
|
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 fill-current mr-2">
|
||||||
|
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
|
||||||
|
</svg>
|
||||||
|
LinkedIn
|
||||||
|
</a>
|
||||||
|
<a href="https://www.youtube.com/@envipath7231" target="_blank" class="btn btn-outline btn-sm">
|
||||||
|
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 fill-current mr-2">
|
||||||
|
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814z"/>
|
||||||
|
</svg>
|
||||||
|
YouTube
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Report Security Issues</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you discover a security vulnerability, please report it responsibly. Do not post security issues
|
||||||
|
publicly. Instead, please contact us directly through the community forums using a private message
|
||||||
|
to the administrators.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Media & Press</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
For media inquiries, press releases, or interview requests, please reach out through our
|
||||||
|
community platform or LinkedIn.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="divider my-8"></div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Frequently Asked Questions</h2>
|
||||||
|
|
||||||
|
<div class="join join-vertical w-full">
|
||||||
|
<div class="collapse collapse-arrow join-item border border-base-300">
|
||||||
|
<input type="radio" name="faq-accordion" />
|
||||||
|
<div class="collapse-title text-lg font-medium">
|
||||||
|
How do I get started with enviPath?
|
||||||
|
</div>
|
||||||
|
<div class="collapse-content">
|
||||||
|
<p>Simply visit our homepage and try the prediction tool! For full access to all features, create a free account. Check out our <a href="https://wiki.envipath.org/" target="_blank" class="link link-primary">documentation</a> for detailed guides.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="collapse collapse-arrow join-item border border-base-300">
|
||||||
|
<input type="radio" name="faq-accordion" />
|
||||||
|
<div class="collapse-title text-lg font-medium">
|
||||||
|
Is enviPath free to use?
|
||||||
|
</div>
|
||||||
|
<div class="collapse-content">
|
||||||
|
<p>Yes! enviPath is free for academic research and educational purposes. For commercial use or custom solutions, please contact us for licensing options.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="collapse collapse-arrow join-item border border-base-300">
|
||||||
|
<input type="radio" name="faq-accordion" />
|
||||||
|
<div class="collapse-title text-lg font-medium">
|
||||||
|
How do I cite enviPath in my research?
|
||||||
|
</div>
|
||||||
|
<div class="collapse-content">
|
||||||
|
<p>Please visit our <a href="/cite" class="link link-primary">citation page</a> for detailed information on how to properly cite enviPath in your publications.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="collapse collapse-arrow join-item border border-base-300">
|
||||||
|
<input type="radio" name="faq-accordion" />
|
||||||
|
<div class="collapse-title text-lg font-medium">
|
||||||
|
Can I contribute data to enviPath?
|
||||||
|
</div>
|
||||||
|
<div class="collapse-content">
|
||||||
|
<p>Yes! We welcome contributions from the scientific community. Please visit our <a href="https://community.envipath.org/" target="_blank" class="link link-primary">community forums</a> to learn about the contribution process.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock main_content %}
|
||||||
145
templates/static/cookie_policy.html
Normal file
145
templates/static/cookie_policy.html
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
{% 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>Cookie Policy</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<div class="bg-base-100 shadow-xl rounded-lg p-8">
|
||||||
|
<h1 class="text-4xl font-bold mb-6">Cookie Policy</h1>
|
||||||
|
|
||||||
|
<div class="prose max-w-none">
|
||||||
|
<p class="text-lg mb-6">
|
||||||
|
This Cookie Policy explains how enviPath uses cookies and similar technologies to recognize you when
|
||||||
|
you visit our platform. It explains what these technologies are and why we use them.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">1. What Are Cookies?</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Cookies are small data files that are placed on your computer or mobile device when you visit a website.
|
||||||
|
Cookies are widely used by website owners to make their websites work, or to work more efficiently, as
|
||||||
|
well as to provide reporting information.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">2. Why We Use Cookies</h2>
|
||||||
|
<p class="mb-4">We use cookies for several reasons:</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li><strong>Essential Cookies:</strong> Required for the platform to function properly</li>
|
||||||
|
<li><strong>Analytics Cookies:</strong> Help us understand how visitors interact with our platform</li>
|
||||||
|
<li><strong>Functional Cookies:</strong> Enable enhanced functionality and personalization</li>
|
||||||
|
<li><strong>Security Cookies:</strong> Authenticate users and prevent fraudulent use</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">3. Types of Cookies We Use</h2>
|
||||||
|
|
||||||
|
<div class="overflow-x-auto mb-6">
|
||||||
|
<table class="table table-zebra w-full">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Cookie Type</th>
|
||||||
|
<th>Purpose</th>
|
||||||
|
<th>Duration</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td><strong>Session Cookies</strong></td>
|
||||||
|
<td>Maintain your login state and session data</td>
|
||||||
|
<td>Session</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>CSRF Token</strong></td>
|
||||||
|
<td>Security protection against cross-site request forgery</td>
|
||||||
|
<td>Session</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>Matomo Analytics</strong></td>
|
||||||
|
<td>Track usage patterns and improve our services</td>
|
||||||
|
<td>13 months</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><strong>OAuth Tokens</strong></td>
|
||||||
|
<td>Authentication and authorization for API access</td>
|
||||||
|
<td>Varies</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">4. Matomo Analytics</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We use Matomo, an open-source web analytics platform, to collect information about how visitors use enviPath.
|
||||||
|
Matomo uses cookies to collect standard internet log information and visitor behavior patterns. The information
|
||||||
|
generated by cookies about your use of the platform is transmitted to our servers.
|
||||||
|
</p>
|
||||||
|
<p class="mb-4">
|
||||||
|
We analyze this information to:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li>Understand how users interact with our platform</li>
|
||||||
|
<li>Identify popular features and areas for improvement</li>
|
||||||
|
<li>Detect and diagnose technical issues</li>
|
||||||
|
<li>Generate reports on platform usage</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">5. Third-Party Cookies</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
In addition to our own cookies, we may use various third-party cookies to report usage statistics and
|
||||||
|
provide integrated services:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li><strong>Discourse Community:</strong> For our community forums at community.envipath.org</li>
|
||||||
|
<li><strong>External CDNs:</strong> For loading libraries like jQuery and Font Awesome</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">6. Managing Cookies</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Most web browsers allow you to control cookies through their settings. However, if you limit the ability
|
||||||
|
of websites to set cookies, you may worsen your overall user experience, as some features may not function
|
||||||
|
properly.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="alert alert-warning mb-6">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
|
||||||
|
</svg>
|
||||||
|
<span><strong>Note:</strong> Disabling essential cookies will prevent you from using certain features of enviPath.</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 class="text-xl font-semibold mt-6 mb-3">Browser Settings</h3>
|
||||||
|
<p class="mb-4">You can manage cookies in your browser settings:</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li><strong>Chrome:</strong> Settings → Privacy and security → Cookies and other site data</li>
|
||||||
|
<li><strong>Firefox:</strong> Options → Privacy & Security → Cookies and Site Data</li>
|
||||||
|
<li><strong>Safari:</strong> Preferences → Privacy → Cookies and website data</li>
|
||||||
|
<li><strong>Edge:</strong> Settings → Cookies and site permissions → Cookies and site data</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">7. Updates to This Policy</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We may update this Cookie Policy from time to time to reflect changes in technology, legislation, or our
|
||||||
|
operations. Please check this page regularly for updates.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">8. Contact Us</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you have questions about our use of cookies, 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 %}
|
||||||
190
templates/static/jobs.html
Normal file
190
templates/static/jobs.html
Normal file
@ -0,0 +1,190 @@
|
|||||||
|
{% 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>Jobs & Careers</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<div class="bg-base-100 shadow-xl rounded-lg p-8">
|
||||||
|
<h1 class="text-4xl font-bold mb-6">Jobs & Careers</h1>
|
||||||
|
|
||||||
|
<div class="prose max-w-none">
|
||||||
|
<p class="text-lg mb-6">
|
||||||
|
Join our team of passionate scientists and developers working at the intersection of environmental
|
||||||
|
chemistry, computational science, and machine learning. Help us build the future of biodegradation prediction.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- Hero Card -->
|
||||||
|
<div class="card bg-gradient-to-br from-primary to-secondary text-primary-content mb-8">
|
||||||
|
<div class="card-body">
|
||||||
|
<h2 class="card-title text-2xl">Why Work With Us?</h2>
|
||||||
|
<p>
|
||||||
|
At enviPath, we're committed to advancing environmental science through innovative technology.
|
||||||
|
We offer a collaborative, research-focused environment where your work directly impacts
|
||||||
|
environmental protection and sustainability.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">What We Value</h2>
|
||||||
|
<div class="grid md:grid-cols-2 gap-4 mb-6 not-prose">
|
||||||
|
<div class="flex items-start gap-3">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-primary flex-shrink-0 mt-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-semibold">Scientific Excellence</h3>
|
||||||
|
<p class="text-sm">Rigorous research and peer-reviewed contributions</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-start gap-3">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-primary flex-shrink-0 mt-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
|
||||||
|
</svg>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-semibold">Collaboration</h3>
|
||||||
|
<p class="text-sm">Work with leading institutions worldwide</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-start gap-3">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-primary flex-shrink-0 mt-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
|
||||||
|
</svg>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-semibold">Innovation</h3>
|
||||||
|
<p class="text-sm">Push the boundaries of computational chemistry</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-start gap-3">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-primary flex-shrink-0 mt-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||||
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-semibold">Impact</h3>
|
||||||
|
<p class="text-sm">Contribute to environmental protection</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Current Opportunities</h2>
|
||||||
|
|
||||||
|
<div class="alert alert-info mb-6">
|
||||||
|
<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>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-bold">No Current Openings</h3>
|
||||||
|
<div class="text-sm">We don't have any open positions at the moment, but we're always interested in hearing from talented individuals. Please check back later or reach out with your CV.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Example Job Posting Structure (for when there are openings) -->
|
||||||
|
<!--
|
||||||
|
<div class="card bg-base-200 shadow-md mb-4">
|
||||||
|
<div class="card-body">
|
||||||
|
<div class="flex justify-between items-start">
|
||||||
|
<div>
|
||||||
|
<h3 class="card-title text-xl">Position Title</h3>
|
||||||
|
<div class="flex gap-2 mt-2">
|
||||||
|
<div class="badge badge-primary">Full-time</div>
|
||||||
|
<div class="badge badge-outline">Remote</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-sm text-base-content/70">Posted: Date</div>
|
||||||
|
</div>
|
||||||
|
<p class="mt-4">Brief description of the role...</p>
|
||||||
|
<div class="card-actions justify-end mt-4">
|
||||||
|
<button class="btn btn-primary">Apply Now</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Types of Roles</h2>
|
||||||
|
<p class="mb-4">We typically hire for the following types of positions:</p>
|
||||||
|
|
||||||
|
<div class="space-y-4 mb-6">
|
||||||
|
<div class="card bg-base-200">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-lg">Computational Chemists</h3>
|
||||||
|
<p>Develop and improve prediction models, curate chemical databases, and validate predictions against experimental data.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card bg-base-200">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-lg">Machine Learning Engineers</h3>
|
||||||
|
<p>Build and optimize ML models for biotransformation prediction, feature engineering, and model deployment.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card bg-base-200">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-lg">Software Developers</h3>
|
||||||
|
<p>Develop and maintain the enviPath platform, API, and user interfaces using Python, Django, and modern web technologies.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card bg-base-200">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title text-lg">Postdoctoral Researchers</h3>
|
||||||
|
<p>Conduct independent research, publish findings, and contribute to grant proposals in computational environmental chemistry.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Student Opportunities</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We regularly host students for internships, Master's theses, and PhD projects. If you're interested
|
||||||
|
in computational chemistry, machine learning, or environmental science, we'd love to hear from you.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="card bg-secondary text-secondary-content mb-6">
|
||||||
|
<div class="card-body">
|
||||||
|
<h3 class="card-title">Academic Collaborations</h3>
|
||||||
|
<p>
|
||||||
|
We partner with universities including the University of Auckland, Eawag, and University of Zurich.
|
||||||
|
Check with your academic advisor about potential collaboration opportunities.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">How to Apply</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Interested in joining our team? Here's how to get in touch:
|
||||||
|
</p>
|
||||||
|
<ol class="list-decimal list-inside mb-6 space-y-2">
|
||||||
|
<li>Review our <a href="/about" class="link link-primary">about page</a> to understand our mission and work</li>
|
||||||
|
<li>Prepare your CV/resume and a brief cover letter explaining your interest</li>
|
||||||
|
<li>Visit our <a href="https://community.envipath.org/" target="_blank" class="link link-primary">community forums</a> or reach out via <a href="https://www.linkedin.com/company/envipath/" target="_blank" class="link link-primary">LinkedIn</a></li>
|
||||||
|
<li>Include links to your publications, GitHub profile, or portfolio if relevant</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<div class="alert alert-success">
|
||||||
|
<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="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
|
</svg>
|
||||||
|
<div>
|
||||||
|
<h3 class="font-bold">We Value Diversity</h3>
|
||||||
|
<div class="text-sm">enviPath is an equal opportunity employer. We celebrate diversity and are committed to creating an inclusive environment for all team members.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="divider my-8"></div>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">Contact</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Have questions about careers at enviPath? Visit our <a href="/contact" class="link link-primary">contact page</a>
|
||||||
|
or join our <a href="https://community.envipath.org/" target="_blank" class="link link-primary">community forums</a>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock main_content %}
|
||||||
138
templates/static/privacy_policy.html
Normal file
138
templates/static/privacy_policy.html
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
{% 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>Privacy Policy</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Main Content -->
|
||||||
|
<div class="bg-base-100 shadow-xl rounded-lg p-8">
|
||||||
|
<h1 class="text-4xl font-bold mb-6">Privacy Policy</h1>
|
||||||
|
|
||||||
|
<div class="prose max-w-none">
|
||||||
|
<p class="text-lg mb-6">
|
||||||
|
enviPath is committed to protecting your privacy. This Privacy Policy explains how we collect, use,
|
||||||
|
disclose, and safeguard your information when you use our platform.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">1. Information We Collect</h2>
|
||||||
|
|
||||||
|
<h3 class="text-xl font-semibold mt-6 mb-3">Personal Information</h3>
|
||||||
|
<p class="mb-4">
|
||||||
|
We may collect personal information that you voluntarily provide when you:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li>Register for an account</li>
|
||||||
|
<li>Use our prediction services</li>
|
||||||
|
<li>Submit data or pathways</li>
|
||||||
|
<li>Contact our support team</li>
|
||||||
|
<li>Participate in our community forums</li>
|
||||||
|
</ul>
|
||||||
|
<p class="mb-4">
|
||||||
|
This information may include: name, email address, institution affiliation, and research interests.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h3 class="text-xl font-semibold mt-6 mb-3">Usage Data</h3>
|
||||||
|
<p class="mb-4">
|
||||||
|
We automatically collect certain information when you visit, use, or navigate the platform. This includes:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li>IP address and browser type</li>
|
||||||
|
<li>Pages visited and time spent</li>
|
||||||
|
<li>Referring/exit pages</li>
|
||||||
|
<li>Prediction queries and results</li>
|
||||||
|
<li>Operating system and device information</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">2. How We Use Your Information</h2>
|
||||||
|
<p class="mb-4">We use the information we collect to:</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li>Provide, operate, and maintain our services</li>
|
||||||
|
<li>Improve and personalize user experience</li>
|
||||||
|
<li>Understand and analyze usage patterns</li>
|
||||||
|
<li>Develop new features and services</li>
|
||||||
|
<li>Communicate with you about updates and support</li>
|
||||||
|
<li>Prevent fraudulent activities and ensure security</li>
|
||||||
|
<li>Conduct research and analysis for scientific advancement</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">3. Data Sharing and Disclosure</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We do not sell your personal information. We may share your information in the following situations:
|
||||||
|
</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li><strong>Academic Research:</strong> Anonymized usage data may be used for research purposes</li>
|
||||||
|
<li><strong>Legal Requirements:</strong> When required by law or to protect our rights</li>
|
||||||
|
<li><strong>Service Providers:</strong> With trusted third parties who assist in operating our platform</li>
|
||||||
|
<li><strong>Public Data:</strong> Data you explicitly mark as public will be accessible to other users</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">4. Data Retention</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We retain your personal information for as long as necessary to provide our services and fulfill the
|
||||||
|
purposes outlined in this policy. You may request deletion of your account and associated data at any time.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">5. Analytics and Cookies</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We use Matomo analytics to understand how users interact with our platform. This helps us improve our
|
||||||
|
services. For more details, see our <a href="/cookie-policy" class="link link-primary">Cookie Policy</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">6. Data Security</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We implement appropriate technical and organizational security measures to protect your personal information.
|
||||||
|
However, no electronic transmission or storage is 100% secure, and we cannot guarantee absolute security.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">7. Your Rights</h2>
|
||||||
|
<p class="mb-4">Depending on your location, you may have the following rights:</p>
|
||||||
|
<ul class="list-disc list-inside mb-4 space-y-2">
|
||||||
|
<li>Access to your personal data</li>
|
||||||
|
<li>Correction of inaccurate data</li>
|
||||||
|
<li>Deletion of your data</li>
|
||||||
|
<li>Restriction of processing</li>
|
||||||
|
<li>Data portability</li>
|
||||||
|
<li>Objection to processing</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">8. Third-Party Services</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
Our platform may contain links to third-party websites or integrate with external services
|
||||||
|
(e.g., Discourse community forums). We are not responsible for the privacy practices of these third parties.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">9. Children's Privacy</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
enviPath is not intended for users under the age of 16. We do not knowingly collect personal information
|
||||||
|
from children. If you believe we have collected information from a child, please contact us.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">10. Changes to This Policy</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
We may update this Privacy Policy from time to time. We will notify you of any changes by posting the
|
||||||
|
new policy on this page and updating the "Last updated" date.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2 class="text-2xl font-semibold mt-8 mb-4">11. Contact Us</h2>
|
||||||
|
<p class="mb-4">
|
||||||
|
If you have questions or concerns about this Privacy Policy, 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 %}
|
||||||
96
templates/static/terms_of_use.html
Normal file
96
templates/static/terms_of_use.html
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
{% 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 %}
|
||||||
Reference in New Issue
Block a user