5 lines
391 B
Plaintext
5 lines
391 B
Plaintext
<%= bootstrap_form_with model: [account_auth], html: { autocorrect: :off, autocapitalize: :none, autocomplete: :off, spellcheck: false } do |form| %>
|
|
<%= form.email_field :user_email, hide_label: true, append: form.button(fa_icon("paper-plane-o", text: t(".submit")), class: "btn btn-primary"), placeholder: true %>
|
|
<%= form.hidden_field :account_id, { value: account_id } %>
|
|
<% end %>
|