Concept Flow - File upload forms
User opens form page
Browser shows form with file input
User selects file and submits
Server receives POST request
Flask reads file from request.files
Server saves file or processes it
Server sends response back
Browser shows success or error message
This flow shows how a user selects a file in a form, submits it, and how Flask handles the file upload on the server side.