Chat Upload
A chat-style interface where users can attach and upload files within a message thread.
What you should see: an attach control sized to sit inside a message composer. Files upload immediately and appear in the thread; the uploader is inline, so it does not push the input around.
Welcome! You can attach files to your messages using the button below.
Drag & drop files here, or paste from clipboard
<core-upload id="chatUploader"
asp-upload-url="/api/upload/upload"
asp-multiple="true"
asp-auto-upload="true"
asp-progress="true"
asp-inline="true"
asp-button-text="Attach">
</core-upload>
<input id="chat-input" type="text" placeholder="Type a message..." />
<button id="btn-send">Send</button>