genoalert / index.html
HassanStar's picture
Add 2 files
d03b7be verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Genocide Documentation Hub</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.timeline-item {
position: relative;
padding-left: 2rem;
margin-bottom: 2rem;
}
.timeline-item:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 1px;
height: 100%;
background-color: #e5e7eb;
}
.timeline-dot {
position: absolute;
left: -0.5rem;
top: 0.5rem;
width: 1rem;
height: 1rem;
border-radius: 50%;
background-color: #ef4444;
}
.map-container {
height: 400px;
background-color: #f3f4f6;
border-radius: 0.5rem;
position: relative;
overflow: hidden;
}
.map-placeholder {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: #6b7280;
}
.evidence-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.fade-in {
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="bg-red-700 text-white shadow-lg">
<div class="container mx-auto px-4 py-6">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<i class="fas fa-exclamation-triangle text-2xl"></i>
<h1 class="text-2xl font-bold">Genocide Documentation Hub</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#dashboard" class="hover:text-red-200 transition">Dashboard</a>
<a href="#evidence" class="hover:text-red-200 transition">Evidence</a>
<a href="#submit" class="hover:text-red-200 transition">Submit Report</a>
<a href="#resources" class="hover:text-red-200 transition">Resources</a>
</nav>
<button class="md:hidden text-xl">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="bg-red-600 text-white py-16">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl font-bold mb-6">Documenting Atrocities to Seek Justice</h2>
<p class="text-xl max-w-3xl mx-auto mb-8">
A platform to collect, verify, and preserve evidence of ongoing genocides worldwide.
Together, we can bear witness and demand accountability.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#submit" class="bg-white text-red-700 px-6 py-3 rounded-lg font-semibold hover:bg-red-50 transition">
<i class="fas fa-plus-circle mr-2"></i>Submit Evidence
</a>
<a href="#resources" class="border-2 border-white px-6 py-3 rounded-lg font-semibold hover:bg-red-700 transition">
<i class="fas fa-book mr-2"></i>Learn More
</a>
</div>
</div>
</section>
<!-- Dashboard Section -->
<section id="dashboard" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-8 text-center">Global Situation Dashboard</h2>
<!-- Stats Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-12">
<div class="bg-gray-100 p-6 rounded-lg shadow">
<div class="flex items-center">
<div class="bg-red-100 p-3 rounded-full mr-4">
<i class="fas fa-users text-red-600 text-xl"></i>
</div>
<div>
<p class="text-gray-600">Affected Population</p>
<h3 class="text-2xl font-bold">2.3M+</h3>
</div>
</div>
</div>
<div class="bg-gray-100 p-6 rounded-lg shadow">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-file-alt text-blue-600 text-xl"></i>
</div>
<div>
<p class="text-gray-600">Documented Cases</p>
<h3 class="text-2xl font-bold">14,892</h3>
</div>
</div>
</div>
<div class="bg-gray-100 p-6 rounded-lg shadow">
<div class="flex items-center">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-globe-americas text-green-600 text-xl"></i>
</div>
<div>
<p class="text-gray-600">Active Conflicts</p>
<h3 class="text-2xl font-bold">7</h3>
</div>
</div>
</div>
<div class="bg-gray-100 p-6 rounded-lg shadow">
<div class="flex items-center">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-gavel text-purple-600 text-xl"></i>
</div>
<div>
<p class="text-gray-600">Legal Proceedings</p>
<h3 class="text-2xl font-bold">42</h3>
</div>
</div>
</div>
</div>
<!-- Map and Charts -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 mb-12">
<div class="lg:col-span-2 bg-white p-6 rounded-lg shadow">
<div class="flex justify-between items-center mb-4">
<h3 class="text-xl font-semibold">Global Hotspots</h3>
<div class="flex space-x-2">
<button class="px-3 py-1 bg-gray-100 rounded text-sm">2023</button>
<button class="px-3 py-1 bg-gray-100 rounded text-sm">2022</button>
<button class="px-3 py-1 bg-gray-100 rounded text-sm">All</button>
</div>
</div>
<div class="map-container">
<div class="map-placeholder">
<i class="fas fa-map-marked-alt text-5xl mb-4"></i>
<p>Interactive map visualization coming soon</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-4">Report Types</h3>
<canvas id="reportTypesChart" height="250"></canvas>
</div>
</div>
<!-- Timeline -->
<div class="bg-white p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-6">Recent Developments</h3>
<div class="space-y-6">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex justify-between items-start mb-2">
<h4 class="font-semibold">UN Security Council Emergency Session</h4>
<span class="text-sm text-gray-500">June 15, 2023</span>
</div>
<p class="text-gray-700">The UN Security Council held an emergency session to discuss the escalating violence in the region, with multiple countries calling for immediate intervention.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex justify-between items-start mb-2">
<h4 class="font-semibold">Mass Grave Discovered</h4>
<span class="text-sm text-gray-500">May 28, 2023</span>
</div>
<p class="text-gray-700">Forensic teams uncovered a mass grave containing over 200 bodies in the northern region. Preliminary reports indicate victims were executed.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex justify-between items-start mb-2">
<h4 class="font-semibold">ICC Opens Investigation</h4>
<span class="text-sm text-gray-500">April 5, 2023</span>
</div>
<p class="text-gray-700">The International Criminal Court announced it would open a formal investigation into potential crimes against humanity following mounting evidence.</p>
</div>
</div>
</div>
<button class="mt-6 text-red-600 font-semibold hover:underline">
<i class="fas fa-history mr-2"></i>View Full Timeline
</button>
</div>
</div>
</section>
<!-- Evidence Section -->
<section id="evidence" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-8 text-center">Documented Evidence</h2>
<!-- Filter Bar -->
<div class="bg-white p-4 rounded-lg shadow mb-8">
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
<div class="flex-1">
<div class="relative">
<input type="text" placeholder="Search evidence..." class="w-full pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-red-300">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
</div>
<div class="flex space-x-2">
<select class="border rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-red-300">
<option>All Regions</option>
<option>Middle East</option>
<option>Africa</option>
<option>Asia</option>
<option>Europe</option>
</select>
<select class="border rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-red-300">
<option>All Types</option>
<option>Testimonies</option>
<option>Photos</option>
<option>Videos</option>
<option>Documents</option>
</select>
<button class="bg-red-600 text-white px-4 py-2 rounded-lg hover:bg-red-700 transition">
<i class="fas fa-filter mr-2"></i>Filter
</button>
</div>
</div>
</div>
<!-- Evidence Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Evidence Card 1 -->
<div class="evidence-card bg-white rounded-lg shadow overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Evidence photo" class="w-full h-full object-cover">
<div class="absolute bottom-0 left-0 bg-black bg-opacity-70 text-white p-2 w-full">
<span class="text-sm">Photo Evidence • June 10, 2023</span>
</div>
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Destroyed Residential Area</h3>
<p class="text-gray-600 mb-4">Satellite imagery shows complete destruction of a neighborhood allegedly targeted for ethnic cleansing.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-red-100 text-red-800 px-2 py-1 rounded">Verified</span>
<button class="text-red-600 hover:text-red-800">
<i class="fas fa-expand mr-1"></i>View Details
</button>
</div>
</div>
</div>
<!-- Evidence Card 2 -->
<div class="evidence-card bg-white rounded-lg shadow overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 relative overflow-hidden flex items-center justify-center">
<i class="fas fa-file-alt text-5xl text-gray-400"></i>
<div class="absolute bottom-0 left-0 bg-black bg-opacity-70 text-white p-2 w-full">
<span class="text-sm">Document • May 22, 2023</span>
</div>
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Military Orders</h3>
<p class="text-gray-600 mb-4">Leaked documents reveal systematic orders for forced displacement of ethnic minority populations.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-yellow-100 text-yellow-800 px-2 py-1 rounded">Under Review</span>
<button class="text-red-600 hover:text-red-800">
<i class="fas fa-expand mr-1"></i>View Details
</button>
</div>
</div>
</div>
<!-- Evidence Card 3 -->
<div class="evidence-card bg-white rounded-lg shadow overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 relative overflow-hidden">
<div class="absolute inset-0 bg-black bg-opacity-30 flex items-center justify-center">
<i class="fas fa-play-circle text-5xl text-white"></i>
</div>
<img src="https://images.unsplash.com/photo-1568219656418-15c329312bf1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Evidence photo" class="w-full h-full object-cover">
<div class="absolute bottom-0 left-0 bg-black bg-opacity-70 text-white p-2 w-full">
<span class="text-sm">Video Testimony • April 15, 2023</span>
</div>
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Survivor Account</h3>
<p class="text-gray-600 mb-4">Eyewitness describes the massacre in their village and subsequent forced march to detention camps.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-red-100 text-red-800 px-2 py-1 rounded">Verified</span>
<button class="text-red-600 hover:text-red-800">
<i class="fas fa-expand mr-1"></i>View Details
</button>
</div>
</div>
</div>
<!-- Evidence Card 4 -->
<div class="evidence-card bg-white rounded-lg shadow overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1610205298947-7569d6733a5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Evidence photo" class="w-full h-full object-cover">
<div class="absolute bottom-0 left-0 bg-black bg-opacity-70 text-white p-2 w-full">
<span class="text-sm">Photo Evidence • March 30, 2023</span>
</div>
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Detention Facilities</h3>
<p class="text-gray-600 mb-4">Aerial photos reveal expansion of suspected mass detention camps near conflict zones.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-red-100 text-red-800 px-2 py-1 rounded">Verified</span>
<button class="text-red-600 hover:text-red-800">
<i class="fas fa-expand mr-1"></i>View Details
</button>
</div>
</div>
</div>
<!-- Evidence Card 5 -->
<div class="evidence-card bg-white rounded-lg shadow overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 relative overflow-hidden flex items-center justify-center">
<i class="fas fa-microphone-alt text-5xl text-gray-400"></i>
<div class="absolute bottom-0 left-0 bg-black bg-opacity-70 text-white p-2 w-full">
<span class="text-sm">Audio Recording • February 8, 2023</span>
</div>
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Intercepted Communications</h3>
<p class="text-gray-600 mb-4">Military radio transmissions discussing "cleansing operations" against civilian populations.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-green-100 text-green-800 px-2 py-1 rounded">New</span>
<button class="text-red-600 hover:text-red-800">
<i class="fas fa-expand mr-1"></i>View Details
</button>
</div>
</div>
</div>
<!-- Evidence Card 6 -->
<div class="evidence-card bg-white rounded-lg shadow overflow-hidden transition duration-300">
<div class="h-48 bg-gray-200 relative overflow-hidden">
<img src="https://images.unsplash.com/photo-1581093196278-1DF618f4be40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Evidence photo" class="w-full h-full object-cover">
<div class="absolute bottom-0 left-0 bg-black bg-opacity-70 text-white p-2 w-full">
<span class="text-sm">Forensic Report • January 12, 2023</span>
</div>
</div>
<div class="p-4">
<h3 class="font-semibold text-lg mb-2">Medical Analysis</h3>
<p class="text-gray-600 mb-4">Independent forensic examination confirms use of chemical agents against civilian populations.</p>
<div class="flex justify-between items-center">
<span class="text-sm bg-red-100 text-red-800 px-2 py-1 rounded">Verified</span>
<button class="text-red-600 hover:text-red-800">
<i class="fas fa-expand mr-1"></i>View Details
</button>
</div>
</div>
</div>
</div>
<div class="mt-10 text-center">
<button class="bg-red-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-red-700 transition">
<i class="fas fa-eye mr-2"></i>View All Evidence
</button>
</div>
</div>
</section>
<!-- Submit Report Section -->
<section id="submit" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-8 text-center">Submit Evidence</h2>
<div class="max-w-4xl mx-auto bg-gray-50 p-8 rounded-lg shadow">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-semibold mb-4">How to Submit Safely</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-red-100 p-2 rounded-full mr-4">
<i class="fas fa-shield-alt text-red-600"></i>
</div>
<div>
<h4 class="font-medium">Protect Your Identity</h4>
<p class="text-gray-600 text-sm">Remove metadata from files and consider using anonymous submission methods if your safety is at risk.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-check-circle text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Verification Process</h4>
<p class="text-gray-600 text-sm">All submissions undergo rigorous verification by our team of experts before publication.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-lock text-green-600"></i>
</div>
<div>
<h4 class="font-medium">Secure Storage</h4>
<p class="text-gray-600 text-sm">Evidence is stored securely and may be shared with international courts when appropriate.</p>
</div>
</div>
</div>
</div>
<div>
<form id="evidenceForm" class="space-y-4">
<div>
<label for="evidenceType" class="block text-sm font-medium text-gray-700 mb-1">Evidence Type</label>
<select id="evidenceType" class="w-full border rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-red-300">
<option value="">Select type</option>
<option value="photo">Photo</option>
<option value="video">Video</option>
<option value="audio">Audio</option>
<option value="document">Document</option>
<option value="testimony">Testimony</option>
</select>
</div>
<div>
<label for="location" class="block text-sm font-medium text-gray-700 mb-1">Location</label>
<input type="text" id="location" placeholder="Where was this evidence collected?" class="w-full border rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-red-300">
</div>
<div>
<label for="date" class="block text-sm font-medium text-gray-700 mb-1">Date</label>
<input type="date" id="date" class="w-full border rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-red-300">
</div>
<div>
<label for="description" class="block text-sm font-medium text-gray-700 mb-1">Description</label>
<textarea id="description" rows="3" placeholder="Provide details about what this evidence shows" class="w-full border rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-red-300"></textarea>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Upload Files</label>
<div class="border-2 border-dashed border-gray-300 rounded-lg p-4 text-center">
<i class="fas fa-cloud-upload-alt text-3xl text-gray-400 mb-2"></i>
<p class="text-sm text-gray-600">Drag and drop files here or click to browse</p>
<input type="file" class="hidden" multiple>
</div>
</div>
<div class="pt-2">
<button type="submit" class="w-full bg-red-600 text-white py-3 rounded-lg font-semibold hover:bg-red-700 transition">
<i class="fas fa-paper-plane mr-2"></i>Submit Evidence
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-8 text-center">Resources & Action</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow hover:shadow-lg transition">
<div class="bg-red-100 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4">
<i class="fas fa-balance-scale text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Legal Framework</h3>
<p class="text-gray-600 mb-4">Understand the international laws and conventions that define and prohibit genocide.</p>
<a href="#" class="text-red-600 font-medium hover:underline">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
<div class="bg-white p-6 rounded-lg shadow hover:shadow-lg transition">
<div class="bg-blue-100 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4">
<i class="fas fa-hands-helping text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">How to Help</h3>
<p class="text-gray-600 mb-4">Find organizations providing direct assistance to affected communities and refugees.</p>
<a href="#" class="text-red-600 font-medium hover:underline">Get Involved <i class="fas fa-arrow-right ml-1"></i></a>
</div>
<div class="bg-white p-6 rounded-lg shadow hover:shadow-lg transition">
<div class="bg-green-100 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4">
<i class="fas fa-book text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Historical Context</h3>
<p class="text-gray-600 mb-4">Explore case studies of past genocides and the warning signs that preceded them.</p>
<a href="#" class="text-red-600 font-medium hover:underline">Read History <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
<div class="mt-12 bg-white p-8 rounded-lg shadow">
<h3 class="text-2xl font-semibold mb-6 text-center">Stay Informed</h3>
<div class="max-w-2xl mx-auto">
<p class="text-gray-600 mb-6 text-center">Subscribe to receive updates on new evidence, developments in international cases, and action alerts.</p>
<form class="flex flex-col sm:flex-row gap-4">
<input type="email" placeholder="Your email address" class="flex-1 border rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-red-300">
<button type="submit" class="bg-red-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-red-700 transition">
Subscribe
</button>
</form>
<p class="text-xs text-gray-500 mt-3 text-center">We respect your privacy. Your information will never be shared.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">Genocide Documentation Hub</h3>
<p class="text-gray-400">Preserving evidence, seeking justice, and bearing witness to atrocities worldwide.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Methodology</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Partners</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Data Protection</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope mr-2 text-gray-400"></i>
<a href="mailto:info@genocidedocs.org" class="text-gray-400 hover:text-white transition">info@genocidedocs.org</a>
</li>
<li class="flex items-center">
<i class="fas fa-shield-alt mr-2 text-gray-400"></i>
<span class="text-gray-400">Secure Drop</span>
</li>
</ul>
<div class="mt-4 flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500 text-sm">
<p>© 2023 Genocide Documentation Hub. All rights reserved.</p>
<p class="mt-2">This project is strictly non-partisan and dedicated to human rights documentation.</p>
</div>
</div>
</footer>
<script>
// Initialize charts
document.addEventListener('DOMContentLoaded', function() {
// Report Types Chart
const reportTypesCtx = document.getElementById('reportTypesChart').getContext('2d');
const reportTypesChart = new Chart(reportTypesCtx, {
type: 'doughnut',
data: {
labels: ['Testimonies', 'Photos', 'Videos', 'Documents', 'Other'],
datasets: [{
data: [35, 25, 20, 15, 5],
backgroundColor: [
'#ef4444',
'#3b82f6',
'#10b981',
'#8b5cf6',
'#6b7280'
],
borderWidth: 0
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'right',
}
},
cutout: '70%'
}
});
// Form submission
const evidenceForm = document.getElementById('evidenceForm');
if (evidenceForm) {
evidenceForm.addEventListener('submit', function(e) {
e.preventDefault();
// Show submission confirmation
const submitButton = evidenceForm.querySelector('button[type="submit"]');
const originalText = submitButton.innerHTML;
submitButton.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i>Processing...';
submitButton.disabled = true;
// Simulate processing delay
setTimeout(function() {
submitButton.innerHTML = '<i class="fas fa-check mr-2"></i>Submitted';
// Create confirmation message
const confirmation = document.createElement('div');
confirmation.className = 'mt-4 p-4 bg-green-100 text-green-800 rounded-lg fade-in';
confirmation.innerHTML = `
<div class="flex items-start">
<i class="fas fa-check-circle text-green-600 mt-1 mr-3"></i>
<div>
<h4 class="font-semibold">Thank you for your submission</h4>
<p class="text-sm">Our team will review your evidence and contact you if we need additional information. Please check your email for a confirmation receipt.</p>
</div>
</div>
`;
evidenceForm.appendChild(confirmation);
// Reset form after delay
setTimeout(function() {
evidenceForm.reset();
submitButton.innerHTML = originalText;
submitButton.disabled = false;
confirmation.remove();
}, 5000);
}, 2000);
});
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=HassanStar/genoalert" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html>