diff options
| -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> |
