Concept Flow - File uploads handling
User selects file in browser
Browser sends POST request with file
Flask receives request
Check if file part exists
Yes
Validate file (e.g., extension)
Yes
Save file to server folder
Send response to user
END
This flow shows how a file selected by the user is sent to the Flask server, validated, saved, and then a response is sent back.