anicove / api /templates /shared /dmca.html
mwask's picture
Upload 136 files
3953ed1 verified
Raw
History Blame Contribute Delete
5.38 kB
{% extends "shared/base.html" %}
{% block title %}DMCA Disclaimer - AniCove{% endblock %}
{% block meta_description %}DMCA Disclaimer for AniCove. Information regarding copyright and third-party content.{% endblock %}
{% block og_title %}{{ self.title() }}{% endblock %}
{% block og_description %}{{ self.meta_description() }}{% endblock %}
{% block og_image %}{{ url_for('static', filename='images/logos/no-bg-logo.png', _external=True) }}{% endblock %}
{% block extra_css %}
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--lp-bg: #000000;
--lp-text: #ffffff;
--lp-accent: #ff3e3e;
--lp-surface: #0a0a0a;
--lp-border: #1a1a1a;
}
.legal-page {
font-family: 'Space Grotesk', sans-serif;
background: var(--lp-bg);
color: var(--lp-text);
min-height: 100vh;
}
.legal-container {
max-width: 800px;
margin: 0 auto;
padding: 0 40px;
}
.legal-header {
height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--lp-border);
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}
.legal-logo {
font-size: 1.8rem;
font-weight: 700;
letter-spacing: -1px;
text-transform: uppercase;
text-decoration: none;
color: var(--lp-text);
}
.legal-nav {
display: flex;
gap: 30px;
}
.legal-nav a {
text-decoration: none;
color: #888;
font-weight: 500;
transition: color 0.3s;
}
.legal-nav a:hover {
color: #fff;
}
.legal-content {
padding: 80px 0 120px;
}
.legal-badge {
display: inline-block;
font-size: 0.8rem;
font-weight: 600;
color: var(--lp-accent);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
}
.legal-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
line-height: 1;
letter-spacing: -2px;
margin-bottom: 20px;
text-transform: uppercase;
}
.legal-updated {
color: #555;
font-size: 0.9rem;
margin-bottom: 60px;
padding-bottom: 40px;
border-bottom: 1px solid var(--lp-border);
}
.legal-section {
margin-bottom: 48px;
}
.legal-section-title {
font-size: 1.4rem;
font-weight: 600;
letter-spacing: -0.5px;
margin-bottom: 16px;
color: #fff;
}
.legal-section p {
color: #999;
line-height: 1.8;
font-size: 1.1rem;
margin-bottom: 20px;
}
.legal-footer {
padding: 60px 0;
border-top: 1px solid var(--lp-border);
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1400px;
margin: 0 auto;
padding-left: 40px;
padding-right: 40px;
}
.legal-footer-copy {
color: #444;
font-size: 0.9rem;
}
.legal-footer-nav {
display: flex;
gap: 15px;
}
.legal-footer-nav a {
text-decoration: none;
color: #888;
font-weight: 500;
transition: color 0.3s;
font-size: 0.9rem;
}
.legal-footer-nav a:hover {
color: #fff;
}
@media (max-width: 768px) {
.legal-container,
.legal-header,
.legal-footer {
padding-left: 20px;
padding-right: 20px;
}
.legal-header {
height: 80px;
}
.legal-footer {
flex-direction: column;
gap: 20px;
text-align: center;
}
}
</style>
{% endblock %}
{% block content %}
<div class="legal-page">
<header class="legal-header">
<a href="/" class="legal-logo">AniCove</a>
<nav class="legal-nav">
<a href="/home">Browse</a>
<a href="/">Home</a>
</nav>
</header>
<div class="legal-container">
<div class="legal-content">
<span class="legal-badge">Copyright</span>
<h1 class="legal-title">DMCA<br>Disclaimer</h1>
<p class="legal-updated">Last updated — May 2026</p>
<div class="legal-section">
<p><strong>AniCove does not host any video files on its own servers.</strong></p>
<p>Our service merely acts as a search engine and directory connecting users to media hosted on non-affiliated, third-party services. All video content is hosted and provided securely via these third parties.</p>
<p>AniCove is not responsible for the compliance, copyright, legality, or any other aspect of the content streamed from those servers. If you have any legal issues please contact the appropriate media file owners or host sites.</p>
<p>If you believe any content linked on our site infringes on your copyrights, please direct your takedown requests directly to the file hosts where the content is physically located.</p>
</div>
</div>
</div>
<footer class="legal-footer">
<div class="legal-logo" style="font-size: 1.2rem;">AniCove</div>
<div class="legal-footer-copy">© 2026 AniCove. Built for the community.</div>
<div class="legal-footer-nav">
<a href="/terms">Terms</a>
<a href="/privacy">Privacy</a>
<a href="/dmca">DMCA</a>
</div>
</footer>
</div>
{% endblock %}