Commit 224f41ca authored by JC Brand's avatar JC Brand

Remove `autofocus`, it's bad for accessibility and mobile usability

See here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autofocus
parent 158f3f00
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
{[ if (o.authentication == o.LOGIN || o.authentication == o.EXTERNAL) { ]} {[ if (o.authentication == o.LOGIN || o.authentication == o.EXTERNAL) { ]}
<div class="form-group"> <div class="form-group">
<label for="converse-login-jid">{{{o.__("XMPP Address:")}}}</label> <label for="converse-login-jid">{{{o.__("XMPP Address:")}}}</label>
<input id="converse-login-jid" class="form-control" autofocus required="required" type="text" name="jid" placeholder="{{{o.placeholder_username}}}"/> <input id="converse-login-jid" class="form-control" required="required" type="text" name="jid" placeholder="{{{o.placeholder_username}}}"/>
</div> </div>
{[ if (o.authentication !== o.EXTERNAL) { ]} {[ if (o.authentication !== o.EXTERNAL) { ]}
<div class="form-group"> <div class="form-group">
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
{{{o.default_domain}}} {{{o.default_domain}}}
</div> </div>
{[ } else { ]} {[ } else { ]}
<input class="form-control" autofocus="autofocus" required="required" type="text" name="domain" placeholder="{{{o.domain_placeholder}}}"/> <input class="form-control" required="required" type="text" name="domain" placeholder="{{{o.domain_placeholder}}}"/>
<p class="form-text text-muted">{{{o.help_providers}}} <a href="{{{o.href_providers}}}" class="url" target="_blank" rel="noopener">{{{o.help_providers_link}}}</a>.</p> <p class="form-text text-muted">{{{o.help_providers}}} <a href="{{{o.href_providers}}}" class="url" target="_blank" rel="noopener">{{{o.help_providers_link}}}</a>.</p>
</div> </div>
<fieldset class="buttons"> <fieldset class="buttons">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment