export const createInputElementWithForm = function(hasPlaceholder, type) {
  let element = "<form method=get action=javascript:void(0);><input type=\"" + (type || "text") +
                "\" id=\"elem\" maxlength=\"12\""
  if (hasPlaceholder) {
    element += " placeholder=\"Test\""