add label to form - accessibility issue
Don't use placeholder instead of label for form input.
This commit is contained in:
parent
d53d9d01f7
commit
0c42c5e359
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@
|
||||||
<h2 class="window-title">{"Shaare a new link"|t}</h2>
|
<h2 class="window-title">{"Shaare a new link"|t}</h2>
|
||||||
<form method="GET" action="#" name="addform" class="addform">
|
<form method="GET" action="#" name="addform" class="addform">
|
||||||
<div>
|
<div>
|
||||||
<input type="text" name="post" placeholder="{'URL or leave empty to post a note'|t}" class="autofocus">
|
<label for="shaare">{'URL or leave empty to post a note'|t}</label>
|
||||||
|
<input type="text" name="post" id="shaare" class="autofocus">
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<input type="submit" value="{'Add link'|t}">
|
<input type="submit" value="{'Add link'|t}">
|
||||||
|
|
Loading…
Reference in a new issue