chiya/lib/chiya_web/controllers/note_html/import.html.heex
2023-04-10 12:08:19 +02:00

15 lines
411 B
Text

<.header>
Import
</.header>
<.simple_form :let={f} for={@changeset} action={~p"/admin/notes/import"} multipart={true}>
<.error :if={@changeset.action}>
Oops, something went wrong! Please check the errors below.
</.error>
<.input field={f[:file]} type="file" label="Markdown file" accept="text/markdown, text/plain" />
<:actions>
<.button>Import Note</.button>
</:actions>
</.simple_form>