cannery/lib/cannery_web/live/invite_live/form_component.html.leex
2021-09-10 00:23:26 -04:00

15 lines
368 B
Plaintext

<h2><%= @title %></h2>
<%= f = form_for @changeset, "#",
id: "invite-form",
phx_target: @myself,
phx_change: "validate",
phx_submit: "save" %>
<%= label f, :name, class: "title text-lg text-primary-500" %>
<%= text_input f, :name, class: "input input-primary" %>
<%= error_tag f, :name %>
<%= submit "Save", phx_disable_with: "Saving..." %>
</form>