35273-vm/index.php
Flatlogic Bot 734d16aa81 v4
2025-10-27 13:06:57 +00:00

45 lines
2.3 KiB
PHP

<?php
require_once 'config.php';
include 'header.php';
if (isset($_GET['logout'])) {
session_destroy();
header('Location: index.php');
exit;
}
?>
<main class="container mt-5 flex-grow-1">
<div class="p-5 mb-4 bg-white rounded-3 shadow-sm border">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">IEPR Integrated Data Reporting</h1>
<p class="col-md-8 fs-4">A comprehensive system for reporters, validators, and analysts to manage environmental data submissions under EU regulations.</p>
<a href="login.php" class="btn btn-primary btn-lg">Login & Get Started</a>
</div>
</div>
<div class="p-5 mb-4 bg-light rounded-3 shadow-sm border">
<div class="container-fluid py-3">
<h2 class="display-6 fw-bold">Transition to the Industrial Emissions Portal Regulation (IEPR)</h2>
<p class="col-md-12 fs-5">The European Union has updated its regulations on environmental data reporting, replacing the former European Pollutant Release and Transfer Register (E-PRTR) with the new Industrial Emissions Portal Regulation (IEPR). This new regulation aims to enhance public access to environmental information and streamline the reporting process for industrial facilities.</p>
<p class="col-md-12 fs-5">Our platform has been fully updated to align with the IEPR requirements. All data submission, validation, and analysis tools are now compliant with the new format, ensuring a seamless transition for all users.</p>
</div>
</div>
<div class="row align-items-md-stretch">
<div class="col-md-6 mb-4">
<div class="h-100 p-5 text-white rounded-3" style="background-color: #005bac;">
<h2>For Reporters</h2>
<p>Easily upload XML submission files, run pre-validation checks, and submit your final reports with confidence.</p>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="h-100 p-5 bg-light border rounded-3">
<h2>For Analysts & Public</h2>
<p>Browse aggregated data, run trend analyses, and download public datasets. A public portal provides transparency.</p>
</div>
</div>
</div>
</main>
<?php include 'footer.php'; ?>