cannery/lib/cannery_web/live/invite_live/form_component.html.heex

41 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-02-14 21:21:24 -05:00
<div>
2022-02-18 18:21:56 -05:00
<h2 class="mb-8 text-center title text-xl text-primary-600">
2022-02-14 21:21:24 -05:00
<%= @title %>
</h2>
<.form
:let={f}
2022-02-14 21:21:24 -05:00
for={@changeset}
id="invite-form"
2022-02-19 18:06:50 -05:00
class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center"
2022-02-14 21:21:24 -05:00
phx-target={@myself}
phx-change="validate"
phx-submit="save"
>
2023-02-04 10:28:13 -05:00
<div
:if={@changeset.action && not @changeset.valid?()}
class="invalid-feedback col-span-3 text-center"
>
<%= changeset_errors(@changeset) %>
</div>
2022-02-14 21:21:24 -05:00
2023-03-19 23:46:42 -04:00
<%= label(f, :name, gettext("Name"),
class: "title text-lg text-primary-600",
maxlength: 255
) %>
2022-02-14 21:21:24 -05:00
<%= text_input(f, :name, class: "input input-primary col-span-2") %>
<%= error_tag(f, :name, "col-span-3") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :uses_left, gettext("Uses left"), class: "title text-lg text-primary-600") %>
2022-02-14 21:21:24 -05:00
<%= number_input(f, :uses_left, min: 0, class: "input input-primary col-span-2") %>
<%= error_tag(f, :uses_left, "col-span-3") %>
<span class="col-span-3 text-primary-400 italic text-center">
2023-02-04 10:28:13 -05:00
<%= gettext(~s/Leave "Uses left" blank to make invite unlimited/) %>
</span>
2022-02-14 21:21:24 -05:00
<%= submit(dgettext("actions", "Save"),
class: "mx-auto btn btn-primary col-span-3",
phx_disable_with: dgettext("prompts", "Saving...")
) %>
</.form>
</div>