Files
Templated/html/index.html

52 lines
1.8 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test Page</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 3.5rem;
}
</style>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav class="navbar navbar-dark fixed-top bg-dark">
<a href="#" class="navbar-brand">PDF Merger</a>
</nav>
<main role="main">
<div class="jumbotron">
<div class="container">
<h1 class="display-3">PDF Merger</h1>
<p>Merge an Excel sheet with a PDF for invoices.</p>
</div>
</div>
<div class="row">
<div class="col-md12">
<h2>Merge Excel and PDF file</h2>
<form action="/pdf-test/pdf_replace" method="post" enctype="multipart/form-data">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
<div class="custom-file">
<input type="file" class="custom-file-input" id="pdfFile" name="pdf">
<label class="custom-file-label" for="pdfFile">Select a PDF file (.pdf)</label>
</div>
<div class="custom-file">
<input type="file" class="custom-file-input" id="xlsxFile" name="xlsx">
<label class="custom-file-label" for="pdfFile">Select an Excel file (.xlsx)</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</main>
</body>
</html>