如果我们可以调用带有多个输入字段和自定义注释的浏览器提示对话框?

If we can invoke browser prompt dialog box with multi inputs fields and custom note?

人们说我们无法自定义DOM提示框,但我看到像xampp管理员登录页面这样的服务器提供了多输入对话框。如果我们可以自己制作?

例如像这样的:

您无法操纵浏览器提示,但可以轻松创建自己的自定义提示。这是给你的假人:

#foo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: gray;
  padding: 30px;  
}
<div id="foo">
  <p>
    Jolly rogers hobble from graces like big plunders.
  </p>
  <p>
    To the sour lettuce add celery, herring, coconut milk and cored zucchini.
  </p>
  <input >
  <input >
  <button>
    Click me!
  </button>
</div>