HTML Form doesn't upload file to Basin

Viewed 11

I am using an HTML form to receive a user's information for a job application. All of the information, like name and address, are being submitted to [Basin][1] successfully. However only the file name shows, not the actual file which I need available for download.

Here is my code:

 <form
    action="https://usebasin.com/f/6010fb40812e"
    method="POST"
    enctype="multipart/form-data"
    id="form"
    >
    <label for="file-upload">Click on the "Choose File" button to upload a file:</label>
    <input type="file" name="file-upload" />
    <div style="display:flex; justify-content:center;">
        <button type="submit" style="background-color: #252f66; color:#ffffff; margin-top:2em; padding:.5em 2.5em;">Apply</button>
    </div>
  </form>
[1]: https://usebasin.com

0 Answers
Related