Merge pull request #2539 from iamntz/patch-1
Added type=email on register field
This commit is contained in:
commit
49eaaddba8
|
@ -18,7 +18,7 @@
|
|||
<tr class="input">
|
||||
<td class="label"><label for='new-account-email'>{{i18n user.email.title}}</label></td>
|
||||
<td>
|
||||
{{input value=accountEmail id="new-account-email" disabled=emailValidated}}
|
||||
{{input type="email" value=accountEmail id="new-account-email" disabled=emailValidated}}
|
||||
{{input-tip validation=emailValidation}}
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -37,7 +37,7 @@ a#forgot-password-link {clear: left; float: left; }
|
|||
.btn-primary {margin-bottom: 10px; font-size: 15; float: left;}
|
||||
|
||||
.create-account .modal-body {
|
||||
input[type=text], input[type=password] {
|
||||
input[type=text], input[type=email], input[type=password] {
|
||||
display: inline-block;
|
||||
}
|
||||
tr.input {
|
||||
|
|
Loading…
Reference in New Issue