Multi-Step Form
Upload files across multiple form steps. Files persist between steps and submit with the final form.
What you should see: files chosen at one step survive as the user moves through the rest of the form — the queue is not reset by navigating between steps.
1
2
3
Step 1: Personal Details
Step 2: Upload Documents
Drag & drop files here, or paste from clipboard
Step 3: Confirm & Submit
Review your information and uploaded files, then submit the form.
<!-- Step 2: Upload Documents -->
<core-upload asp-upload-url="/api/upload/upload"
asp-multiple="true"
asp-progress="true"
asp-auto-upload="true"
asp-drop-zone="true">
</core-upload>
<!-- Files persist between steps.
The uploader state is preserved when
navigating back and forth. -->