login: use ARIA instead of <fieldset> tag
This commit is contained in:
parent
1f4f60a82d
commit
7e199c72ac
1 changed files with 9 additions and 7 deletions
|
@ -1,9 +1,11 @@
|
||||||
|
|
||||||
|
|
||||||
<form action="{{$dest_url}}" method="post" >
|
<form id="login-form" action="{{$dest_url}}" role="form" method="post" >
|
||||||
<fieldset>
|
<div id="login-group" role="group" aria-labelledby="login-head">
|
||||||
<input type="hidden" name="auth-params" value="login" />
|
<input type="hidden" name="auth-params" value="login" />
|
||||||
|
|
||||||
|
<div id="login-head" class="sr-only">{{$login}}</div>
|
||||||
|
|
||||||
<div id="login_standard">
|
<div id="login_standard">
|
||||||
{{include file="field_input.tpl" field=$lname}}
|
{{include file="field_input.tpl" field=$lname}}
|
||||||
{{include file="field_password.tpl" field=$lpassword}}
|
{{include file="field_password.tpl" field=$lpassword}}
|
||||||
|
@ -30,7 +32,7 @@
|
||||||
<input type="hidden" name="{{$k}}" value="{{$v|escape:'html'}}" />
|
<input type="hidden" name="{{$k}}" value="{{$v|escape:'html'}}" />
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
</fieldset>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue