diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-07-13 12:38:37 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-07-13 12:38:37 -0400 |
| commit | b993f108c1f798f50deac3e8e41a8fc3f002dce9 (patch) | |
| tree | a769c436e47822786c445897cc3d1058a9c96b78 | |
| parent | b15bffedf83cd0d9ab6d43b2fc2d7300d39d5fba (diff) | |
removed autocomplete from wizard
Former-commit-id: 2f6c532b9ebc3686add1f38c6c179aac04c6c0dd
| -rw-r--r-- | www/templates/login.html | 2 | ||||
| -rw-r--r-- | www/templates/wizard.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/www/templates/login.html b/www/templates/login.html index 56f0c945..15409e76 100644 --- a/www/templates/login.html +++ b/www/templates/login.html @@ -18,7 +18,7 @@ <div class="item item-input-inset"> {{'kServerName' | translate }}: <label class="item-input-wrapper"> - <input type="text" placeholder="{{'kExampleServer' | translate}}" ng-model="loginData.serverName"> + <input autocorrect="off" type="text" placeholder="{{'kExampleServer' | translate}}" ng-model="loginData.serverName"> </label> </div> diff --git a/www/templates/wizard.html b/www/templates/wizard.html index c8fc3be5..ca2daf6a 100644 --- a/www/templates/wizard.html +++ b/www/templates/wizard.html @@ -18,7 +18,7 @@ <h4>{{'kWizPortalUrl' | translate}}</h4> <label class="item item-input"> - <input autocapitalize="none" autocomplete="off" type="text" placeholder="e.g. http://server/zm" ng-model="wizard.portalurl"> + <input autocorrect="off" autocapitalize="none" autocomplete="off" type="text" placeholder="e.g. http://server/zm" ng-model="wizard.portalurl"> </label> <a class="button icon-left ion-information-circled button-clear button-dark" ng-click="toggleTip()">{{wizard.tiptext}}</a> @@ -49,7 +49,7 @@ <div ng-if="wizard.usezmauth"> <label class="item item-input item-floating-label" > <span class="input-label">{{'kUserName' | translate}}</span> - <input autocapitalize="none" autocomplete="off" type="text" ng-model="wizard.zmuser" placeholder="{{'kPlaceHolderZMAuthUser'|translate}}" > + <input autocorrect="off" autocapitalize="none" autocomplete="off" type="text" ng-model="wizard.zmuser" placeholder="{{'kPlaceHolderZMAuthUser'|translate}}" > </label> <label class="item item-text-wrap item-input item-floating-label" > <span class="input-label">{{'kPassword' | translate}}</span> @@ -61,7 +61,7 @@ <ion-toggle ng-show="wizard.useauth" ng-model="wizard.usebasicauth" ng-checked="wizard.usebasicauth" toggle-class="toggle-calm">{{'kWizBasicAuth' | translate}}</ion-toggle> <label class="item item-input item-floating-label" ng-show="wizard.usebasicauth"> <span class="input-label">{{'kUserName' | translate}}</span> - <input autocapitalize="none" autocomplete="off" type="text" ng-model="wizard.basicuser" placeholder="{{'kPlaceHolderBasicAuthUser'|translate}}" > + <input autocorrect="off" autocapitalize="none" autocomplete="off" type="text" ng-model="wizard.basicuser" placeholder="{{'kPlaceHolderBasicAuthUser'|translate}}" > </label> <label class="item item-input item-text-wrap item-floating-label" ng-show="wizard.usebasicauth"> <span class="input-label">{{'kPassword' | translate}}</span> |
