mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 08:52:15 -05:00
Fix tabindexes for input fields
This commit is contained in:
parent
881b05df91
commit
1806f78ef3
@ -9,11 +9,11 @@
|
||||
<form class="form" name="form">
|
||||
<p class="form__error-message" ng-show="errMsg">{{errMsg}}</p>
|
||||
<div class="form__row">
|
||||
<input class="input-text" type="text" ng-model="realname" placeholder="Full name (optional)" tabindex="2">
|
||||
<input class="input-text" type="text" ng-model="realname" placeholder="Full name (optional)" tabindex="1">
|
||||
</div>
|
||||
<div class="form__row">
|
||||
<div class="input-email-fixed-domain">
|
||||
<input class="input-text" ng-model="user" required type="text" tabindex="1"
|
||||
<input class="input-text" ng-model="user" required type="text" tabindex="2"
|
||||
pattern='[a-zA-Z0-9\.]+' placeholder="User name"
|
||||
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
|
||||
<span>{{domain}}</span>
|
||||
|
@ -28,11 +28,11 @@
|
||||
|
||||
<div class="form__row">
|
||||
<input class="input-text" type="text" ng-model="realname"
|
||||
placeholder="Full name (optional)" tabindex="2">
|
||||
placeholder="Full name (optional)" tabindex="1">
|
||||
</div>
|
||||
<div class="form__row">
|
||||
<input class="input-text" type="email" required ng-model="emailAddress"
|
||||
placeholder="Email address" tabindex="1" spellcheck="false">
|
||||
placeholder="Email address" tabindex="2" spellcheck="false">
|
||||
</div>
|
||||
<div class="form__row" ng-hide="useOAuth">
|
||||
<input ng-required="!useOAuth" class="input-text" type="password"
|
||||
|
Loading…
Reference in New Issue
Block a user