mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
accounts-ui: give type to all input fields
This commit is contained in:
@@ -89,7 +89,7 @@
|
||||
<label for="configure-login-service-dialog-{{property}}">{{label}}</label>
|
||||
</td>
|
||||
<td>
|
||||
<input id="configure-login-service-dialog-{{property}}" />
|
||||
<input id="configure-login-service-dialog-{{property}}" type="text" />
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
|
||||
@@ -125,7 +125,7 @@
|
||||
<div class="login-form">
|
||||
<div id="forgot-password-email-label-and-input"> {{! XXX we should probably use loginButtonsFormField }}
|
||||
<label id="forgot-password-email-label" for="forgot-password-email">Email</label>
|
||||
<input id="forgot-password-email"/>
|
||||
<input id="forgot-password-email" type="text"/>
|
||||
</div>
|
||||
|
||||
{{> _loginButtonsMessages}}
|
||||
|
||||
@@ -272,6 +272,10 @@
|
||||
Accounts.ui._passwordSignupFields());
|
||||
};
|
||||
|
||||
Template._loginButtonsFormField.inputType = function () {
|
||||
return this.inputType || "text";
|
||||
};
|
||||
|
||||
|
||||
//
|
||||
// loginButtonsChangePassword template
|
||||
|
||||
Reference in New Issue
Block a user