chiya/lib/chiya_web/controllers/token_html/token_form.html.heex

12 lines
418 B
Text
Raw Permalink Normal View History

2023-06-06 22:00:42 +02:00
<.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[:context]} type="text" label="Context" />
<.input field={f[:sent_to]} type="text" label="Application" />
<.input field={f[:user_id]} type="hidden" />
<:actions>
<.button>Save Token</.button>
</:actions>
</.simple_form>