70 lines
3.1 KiB
PHP
70 lines
3.1 KiB
PHP
<?php
|
|
?><!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Merge PDF - PDF Swiss Army</title>
|
|
<meta name="description" content="Combine multiple PDF files into one. Built with Flatlogic Generator.">
|
|
<meta name="keywords" content="merge pdf, combine pdf, pdf joiner, online pdf tool, pdf utility, flatlogic">
|
|
<meta property="og:title" content="Merge PDF - PDF Swiss Army">
|
|
<meta property="og:description" content="Combine multiple PDF files into one. Built with Flatlogic Generator.">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/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;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 fw-bold brand-red" href="index.php">
|
|
<i class="bi bi-box-seam-fill"></i>
|
|
PDF Swiss Army
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container my-5">
|
|
<div class="text-center mb-5">
|
|
<h1 class="display-4 fw-bold">Merge PDF files</h1>
|
|
<p class="lead text-muted">Combine multiple PDFs into a single document.</p>
|
|
</div>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-10 col-xl-8">
|
|
<div id="drop-area" class="mb-4">
|
|
<input type="file" id="fileInput" multiple accept="application/pdf" class="d-none">
|
|
<div class="d-flex flex-column align-items-center">
|
|
<i class="bi bi-cloud-arrow-up-fill upload-icon"></i>
|
|
<h3 class="mt-3 mb-2">Drag & drop files here</h3>
|
|
<p class="text-muted">or</p>
|
|
<button type="button" class="btn btn-brand">Select PDF Files</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="file-list">
|
|
<!-- Selected files will be listed here by JavaScript -->
|
|
</div>
|
|
|
|
<div class="text-center mt-4 d-none" id="action-button-container">
|
|
<button type="button" class="btn btn-brand btn-lg">Merge PDFs</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="text-center py-4 mt-auto">
|
|
<p class="text-muted">© <?php echo date("Y"); ?> PDF Swiss Army. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|