57 lines
2.6 KiB
PHP
57 lines
2.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Split PDF - PDF Toolkit</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.php">
|
|
<i class="bi bi-file-earmark-pdf-fill text-primary"></i>
|
|
PDF Toolkit
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container my-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8 text-center">
|
|
<div class="tool-header">
|
|
<h1 class="display-5 fw-bold mb-3">Split PDF</h1>
|
|
<p class="lead text-muted">Select a PDF file to extract pages from. The server-side logic is not yet implemented.</p>
|
|
</div>
|
|
|
|
<div class="card uploader-card mt-5">
|
|
<div class="card-body">
|
|
<div id="file-drop-zone" class="file-drop-zone">
|
|
<i class="bi bi-cloud-arrow-up-fill display-1 text-primary"></i>
|
|
<p class="mt-3">Drag & drop a PDF file here</p>
|
|
<p class="text-muted">or</p>
|
|
<button id="select-file-btn" class="btn btn-primary">Select PDF File</button>
|
|
<input type="file" id="file-input" class="d-none" accept=".pdf">
|
|
</div>
|
|
<div id="file-list" class="mt-4"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="text-center py-4 mt-auto">
|
|
<p class="text-muted">© <?php echo date("Y"); ?> PDF Toolkit. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|