Fix label/input accessibility on subscription form (#1134)
This commit is contained in:
parent
076b7c7a0a
commit
7832248a08
1 changed files with 4 additions and 4 deletions
|
@ -6,14 +6,14 @@
|
|||
<form method="post" action="" class="form">
|
||||
<div>
|
||||
<p>
|
||||
<label>{{ L.T "subscribers.email" }}</label>
|
||||
<input name="email" required="true" type="email" placeholder="{{ L.T "subscribers.email" }}" autofocus="true" >
|
||||
<label for="email">{{ L.T "subscribers.email" }}</label>
|
||||
<input id="email" name="email" required="true" type="email" placeholder="{{ L.T "subscribers.email" }}" autofocus="true" >
|
||||
|
||||
<input name="nonce" class="nonce" value="" />
|
||||
</p>
|
||||
<p>
|
||||
<label>{{ L.T "public.subName" }}</label>
|
||||
<input name="name" type="text" placeholder="{{ L.T "public.subName" }}" >
|
||||
<label for="name">{{ L.T "public.subName" }}</label>
|
||||
<input id="name" name="name" type="text" placeholder="{{ L.T "public.subName" }}" >
|
||||
</p>
|
||||
<br />
|
||||
<ul class="lists">
|
||||
|
|
Loading…
Reference in a new issue