1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

Use "search" ARIA role.

This commit is contained in:
Rohan Kumar 2022-06-07 23:36:05 -07:00
parent 603bbd8fa2
commit 854ad8dcce
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479

View file

@ -1,9 +1,12 @@
<form
itemprop="potentialAction" itemscope="" itemtype="https://schema.org/SearchAction"
action="https://searchmysite.net/search/" method="get">
<label for="search">Search this site (powered by <a rel="nofollow" href="https://searchmysite.net/">Search My Site</a>):</label>
action="https://searchmysite.net/search/" method="get" role="search">
<label for="search">
Search this site (powered by <a rel="nofollow" href="https://searchmysite.net/">Search My Site</a>):
</label>
<div><!--We need the extra divs to serve as pseudo-table-cells.-->
<input id="search" itemprop="query" type="search" value="domain:seirdy.one " name="q" />
<input id="search" type="search" itemprop="query"
value="domain:seirdy.one " name="q" spellcheck="true" />
<div><input type="submit" value="search" /></div>
</div>
</form>