nulla/lib/nulla_web/controllers/user_html/user_form.html.heex
2025-06-02 17:30:35 +02:00

9 lines
307 B
Text

<.simple_form :let={f} for={@changeset} action={@action}>
<.error :if={@changeset.action}>
Oops, something went wrong! Please check the errors below.
</.error>
<.input field={f[:username]} type="text" label="Username" />
<:actions>
<.button>Save User</.button>
</:actions>
</.simple_form>