It says “Submit” for me - I assume it is getting that from i18n from some system setting.
Here:
<input type="submit" id="submit" name="submit">
you aren’t specifying a value so it just uses the default which I guess gets localized. You can however specify a value:
<input type="submit" id="submit" name="submit" value="Press Me">
1 Like
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.