diff options
| author | luccioman <luccioman@users.noreply.github.com> | 2016-10-07 10:43:06 +0200 |
|---|---|---|
| committer | luccioman <luccioman@users.noreply.github.com> | 2016-10-07 10:43:06 +0200 |
| commit | dd86f7c44e2e7610aabae4e9ea5e81f7352cc616 (patch) | |
| tree | 9ed21966c8f22e8dba06e0105ee748573e9f37f0 /htroot/index.html | |
| parent | fc0c72c84b7b1009708715a37f4d90f41d8cb2bd (diff) | |
Fixed HTML validation errors and grouped radios options in fieldsets
Diffstat (limited to 'htroot/index.html')
| -rw-r--r-- | htroot/index.html | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/htroot/index.html b/htroot/index.html index f057bc9ec..3243aa617 100644 --- a/htroot/index.html +++ b/htroot/index.html @@ -87,27 +87,33 @@ <table> <tr> - <td><label for="count">Results per page</label>:</td> + <td><label id="maxResultsLabel">Results per page</label>:</td> <td> - <input type="radio" name="maximumRecords" id="mr10" value="10" #(count-10)#::checked="checked"#(/count-10)#/><label for="mr10">10</label> - <input type="radio" name="maximumRecords" id="mr50" value="50" #(count-50)#::checked="checked"#(/count-50)#/><label for="mr50">50</label> - <input type="radio" name="maximumRecords" id="mr100" value="100" #(count-100)#::checked="checked"#(/count-100)#/><label for="mr100">100</label> + <fieldset aria-labelledby="maxResultsLabel"> + <input type="radio" name="maximumRecords" id="mr10" value="10" #(count-10)#::checked="checked"#(/count-10)#/><label for="mr10">10</label> + <input type="radio" name="maximumRecords" id="mr50" value="50" #(count-50)#::checked="checked"#(/count-50)#/><label for="mr50">50</label> + <input type="radio" name="maximumRecords" id="mr100" value="100" #(count-100)#::checked="checked"#(/count-100)#/><label for="mr100">100</label> + </fieldset> </td> </tr> + #(resource-select)#:: <tr> - #(resource-select)#:: - <td><label for="resource">Resource</label>:</td> + <td><label id="resourceLabel">Resource</label>:</td> <td> - <input type="radio" name="resource" id="rglobal" value="global" checked="checked" /><label for="rglobal">the peer-to-peer network</label> - <input type="radio" name="resource" id="rlocal" value="local"><label for="rlocal">only the local index</label> + <fieldset aria-labelledby="resourceLabel"> + <input type="radio" name="resource" id="rglobal" value="global" checked="checked" /><label for="rglobal">the peer-to-peer network</label> + <input type="radio" name="resource" id="rlocal" value="local"><label for="rlocal">only the local index</label> + </fieldset> </td>:: - <td><label for="resource">Resource</label>:</td> + <td><label id="resourceLabel">Resource</label>:</td> <td> - <input type="radio" name="resource" id="rglobal" value="global"/><label for="rglobal">the peer-to-peer network</label> - <input type="radio" name="resource" id="rlocal" value="local" checked="checked"/><label for="rlocal">only the local index</label> + <fieldset aria-labelledby="resourceLabel"> + <input type="radio" name="resource" id="rglobal" value="global"/><label for="rglobal">the peer-to-peer network</label> + <input type="radio" name="resource" id="rlocal" value="local" checked="checked"/><label for="rlocal">only the local index</label> + </fieldset> </td> - #(/resource-select)# </tr> + #(/resource-select)# <tr> <td> <label for="prefermaskfilter">Prefer mask</label>: |
