Remove non-allowed form attribute from a label
This commit is contained in:
parent
1a7b9f6bdd
commit
9be4bf538c
|
@ -102,14 +102,16 @@
|
||||||
<th scope="row">{{( pgettext "New Line" "title")}}</th>
|
<th scope="row">{{( pgettext "New Line" "title")}}</th>
|
||||||
<td>
|
<td>
|
||||||
<div class="input">
|
<div class="input">
|
||||||
<input form="newtax" type="text" name="name" id="tax_name" required="required" placeholder="{{( pgettext "Tax name" "input" )}}">
|
<input form="newtax" type="text" name="name" id="tax_name" required="required"
|
||||||
|
placeholder="{{( pgettext "Tax name" "input" )}}">
|
||||||
<label for="tax_name">{{( pgettext "Tax name" "input" )}}</label>
|
<label for="tax_name">{{( pgettext "Tax name" "input" )}}</label>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<div class="input">
|
<div class="input">
|
||||||
<input form="newtax" type="number" name="rate" id="tax_rate" min="-99" max="99" required="required" placeholder="{{( pgettext "Rate (%)" "input" )}}">
|
<input form="newtax" type="number" name="rate" id="tax_rate" min="-99" max="99"
|
||||||
<label form="newtax" for="tax_rate">{{( pgettext "Rate (%)" "input" )}}</label>
|
required="required" placeholder="{{( pgettext "Rate (%)" "input" )}}">
|
||||||
|
<label for="tax_rate">{{( pgettext "Rate (%)" "input" )}}</label>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue