Audon audioplayer App #1414

Merged
MrPetovan merged 19 commits from :develop into develop 2023-08-18 18:41:35 +02:00
Showing only changes of commit 776c1996e7 - Show all commits

View file

@ -1,2 +1,2 @@
{{include file="field_input.tpl" field=$audonurl}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>
<button type="submit">{{$submit}}</button>
loma-one marked this conversation as resolved Outdated

Please use a <button> element instead, since you aren't checking the value of page_site, you can omit the name and value attribute.

<button type="submit">{{$submit}}</button>
Please use a `<button>` element instead, since you aren't checking the value of `page_site`, you can omit the `name` and `value` attribute. ```html <button type="submit">{{$submit}}</button> ```