<.form
let={f}
for={:secret}
phx-submit="save"
phx-change="validate"
autocomplete="off"
phx-target={@myself}
>
Label (alphanumeric and underscore)
<%= text_input(f, :label,
value: @secret["label"],
class: "input",
placeholder: "secret label",
autofocus: true,
aria_labelledby: "secret-label",
spellcheck: "false"
) %>
Value
<%= text_input(f, :value,
value: @secret["value"],
class: "input",
placeholder: "secret value",
aria_labelledby: "secret-value",
spellcheck: "false"
) %>
<%= live_patch("Cancel", to: @return_to, class: "button-base button-outlined-gray") %>