/
home
/
whiteglobeco
/
public_html
/
Upload File
HOME
<!DOCTYPE html> <html> <head> <title>Download Article</title> <link rel="stylesheet" href="board-insights.css"> </head> <body> <div class="form-container"> <h2>Access Article</h2> <form action="submit.php" method="POST"> <input type="hidden" name="file" id="file"> <input type="text" name="name" placeholder="Full Name" required><br><br> <input type="email" name="email" placeholder="Email" required><br><br> <input type="text" name="company" placeholder="Company" required><br><br> <button type="submit">Download</button> </form> </div> <script> const params = new URLSearchParams(window.location.search); document.getElementById("file").value = params.get("file"); </script> </body> </html>