I have switched themes, but it did not fix the problem for me.
However, changing the Submit button to an HTML submit button fixed it for me. You can do it from the inspect panel of the browser. Change the submit button from input
to a button
tag.
<p class="submit">
<input type="submit" name="reset" id="reset" class="button button-small" value="Remove Keys">
</p>
TO:
<p class="submit">
<button type="submit" name="reset" id="reset" class="button button-small" value="Remove Keys">Submit</button>
</p>