What are the potential compatibility issues with using button elements as submit buttons in different versions of Internet Explorer?

Using button elements as submit buttons in different versions of Internet Explorer can cause compatibility issues, as older versions may not handle them correctly. To solve this issue, it is recommended to use input elements with type="submit" instead.

<form action="submit.php" method="post">
  <input type="text" name="username">
  <input type="password" name="password">
  <input type="submit" value="Submit">
</form>