diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 23:24:53 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 23:24:53 -0800 |
commit | 92192f986fbc3e4efca13074293f7ab6cffe1d89 (patch) | |
tree | e342782f12ece63cc8425974fcfac8b0b77b7045 /python/fatcat_web/templates/home.html | |
parent | 77be4e32759ecbae1d8c10ac395eecdca89b3808 (diff) | |
download | fatcat-92192f986fbc3e4efca13074293f7ab6cffe1d89.tar.gz fatcat-92192f986fbc3e4efca13074293f7ab6cffe1d89.zip |
webface: add input form labels
Diffstat (limited to 'python/fatcat_web/templates/home.html')
-rw-r--r-- | python/fatcat_web/templates/home.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/fatcat_web/templates/home.html b/python/fatcat_web/templates/home.html index 4d3b44a1..1657406d 100644 --- a/python/fatcat_web/templates/home.html +++ b/python/fatcat_web/templates/home.html @@ -42,7 +42,7 @@ indexing (aka, linking together of pre-prints and final copies). <td><form class="" role="lookup" action="/release/lookup" method="get"> <div class="ui icon input"> <i class="search icon"></i> - <input type="text" placeholder="DOI" name="doi"> + <input type="text" placeholder="DOI" name="doi" aria-label="search by DOI"> </div> </form> <tr><td><b>Container</b> @@ -53,7 +53,7 @@ indexing (aka, linking together of pre-prints and final copies). <td><form class="" role="lookup" action="/container/lookup" method="get"> <div class="ui icon input"> <i class="search icon"></i> - <input type="text" placeholder="ISSN-L" name="issnl"> + <input type="text" placeholder="ISSN-L" name="issnl" aria-label="search by ISSN-L"> </div> </form> @@ -65,7 +65,7 @@ indexing (aka, linking together of pre-prints and final copies). <td><form class="" role="lookup" action="/creator/lookup" method="get"> <div class="ui icon input"> <i class="search icon"></i> - <input type="text" placeholder="ORCID" name="orcid"> + <input type="text" placeholder="ORCID" name="orcid" aria-label="search by ORCID"> </div> </form> <tr><td><b>File</b> @@ -76,7 +76,7 @@ indexing (aka, linking together of pre-prints and final copies). <td><form class="" role="lookup" action="/file/lookup" method="get"> <div class="ui icon input"> <i class="search icon"></i> - <input type="text" placeholder="SHA-1" name="sha1"> + <input type="text" placeholder="SHA-1" name="sha1" aria-label="search by SHA1"> </div> </form> <tr><td><b>Work</b> |