29 lines
992 B
PHP
29 lines
992 B
PHP
<?php
|
|
// preview.php
|
|
|
|
// This is a placeholder for the CV preview.
|
|
// In a real application, you would use this data to populate a template.
|
|
|
|
?><!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CV Preview - MagiCV</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body class="bg-light-gray">
|
|
<div class="container mt-5">
|
|
<div class="bg-white p-4 p-md-5 rounded-3 shadow-sm">
|
|
<h1 class="h3 fw-bold mb-4">CV Preview</h1>
|
|
<p class="text-muted mb-4">This is a preview of the data you entered. The final CV will be styled based on the template you choose.</p>
|
|
|
|
<h2 class="h4 fw-bold mt-5">Personal Details</h2>
|
|
<pre><?php print_r($_POST); ?></pre>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|