Untitled fiddle

by dandclark_msft

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Create Password Input</title>
</head>
<body>
  <button id="add-password">Add password field</button>

  <script>
    document.getElementById('add-password').addEventListener('click', function () {
      const input = document.createElement('input');
      input.type = 'password';
      document.body.appendChild(input);
    });
  </script>
</body>
</html>