我Save password/Never for this webstie/Not now
在 iOS 上的 Safari 浏览器上出现弹出窗口的问题。一旦我在表单中输入完密码并进入下一步,即First name
,就会出现弹出窗口,我们可以说这是一种例外行为。但是,一旦First name
填满并且我移动到该Last name
字段 - 关于保存密码的弹出窗口再次出现。如果我在 - 下方添加更多字段,Last name
则每一步都会显示弹出窗口。
我希望弹出窗口只显示一次 - 无论是在表格末尾还是在填写Password
字段后,这对我来说并不重要。
下面我从我的 LiveView 表单中粘贴了一些代码。
<%= f = form_for @user_changeset, "#", [phx_submit: :register, id: "userLiveForm"] %>
<%= text_input f, :email, placeholder: gettext("Email") %>
<%= error_tag f, :email %>
<%= text_input f, :confirmation_email, placeholder: gettext("Confirmation Email") %>
<%= error_tag f, :confirmation_email %>
<%= password_input f, :password, placeholder: gettext("Password") %>
<%= error_tag f, :password %>
<%= text_input f, :first_name, placeholder: gettext("First name") %>
<%= error_tag f, :first_name %>
<%= text_input f, :last_name, placeholder: gettext("Last name") %>
<%= error_tag f, :last_name %>
<%= submit gettext("Next step"), id: "userSubmit" %>
<% end %>
Erlang/OTP 24 [erts-12.0.3] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]
Elixir 1.12.2(使用 Erlang/OTP 22 编译)
实时取景 0.15.5
凤凰 1.5.6