diff --git a/www/templates/api/doc.html b/www/templates/api/doc.html index 4eb7c6fb6ccaa2f9074e9c3182ad016265af3ebf..0048b71729de92034a20c72f3aec532a8da5d3e6 100644 --- a/www/templates/api/doc.html +++ b/www/templates/api/doc.html @@ -142,6 +142,7 @@ </p> <label class="item item-input"> <input type="text" + autocomplete="off" ng-model="transferData.pubkey" ng-model-options="{ debounce: 650 }" placeholder="{{'API.DOC.TRANSFER.PARAM_PUBKEY_HELP'|translate}}"> @@ -153,6 +154,7 @@ </p> <label class="item item-input"> <input type="text" + autocomplete="off" ng-model="transferData.amount" ng-model-options="{ debounce: 650 }" placeholder="{{'API.DOC.TRANSFER.PARAM_AMOUNT_HELP'|translate}}"> @@ -163,7 +165,9 @@ {{'API.DOC.TRANSFER.PARAM_COMMENT' | translate}} : </p> <label class="item item-input"> - <input type="text" ng-model="transferData.comment" placeholder="{{'API.DOC.TRANSFER.PARAM_COMMENT'|translate}}"> + <input type="text" + autocomplete="off" + ng-model="transferData.comment" placeholder="{{'API.DOC.TRANSFER.PARAM_COMMENT'|translate}}"> </label> <p class="padding-top"> diff --git a/www/templates/common/popover_copy.html b/www/templates/common/popover_copy.html index 297d6213cfbf71cceec0b788521876efd96d6487..7886a7590ef81c8a7838acc94c88686f312efc4a 100644 --- a/www/templates/common/popover_copy.html +++ b/www/templates/common/popover_copy.html @@ -3,6 +3,7 @@ <div class="list"> <div class="item item-input"> <input type="text" + autocomplete="off" ng-if="!rows || rows <= 1" ng-model="value"> <textarea diff --git a/www/templates/common/popover_share.html b/www/templates/common/popover_share.html index a4c114dca1d88f072d4d82b73c74c47996e34720..5089d0d2823ccdcb277d3b1952a85ac33833364e 100644 --- a/www/templates/common/popover_share.html +++ b/www/templates/common/popover_share.html @@ -6,7 +6,7 @@ </div> <div class="list no-margin no-padding has-header has-footer block"> <div class="item item-input"> - <input type="text" ng-model="value"> + <input type="text" autocomplete="off" ng-model="value"> </div> </div> diff --git a/www/templates/wallet/slides/slides_recoverID_2.html b/www/templates/wallet/slides/slides_recoverID_2.html index 417951b76a5588bd11bf2023568a0e8ccc81f464..eadde239d3a8ad9e67f545f69b73f67d77fe5a3a 100644 --- a/www/templates/wallet/slides/slides_recoverID_2.html +++ b/www/templates/wallet/slides/slides_recoverID_2.html @@ -7,7 +7,9 @@ <label class="item item-input {{smallscreen ? 'item-stacked-label' : 'item-floating-label'}}" ng-class="{'item-input-error': recoverForm.$submitted && recoverForm['question{{$index}}'].$invalid}"> <span class="input-label" style="{{smallscreen ? 'white-space: normal' : ''}}">{{question.value }}</span> - <input type="text" name="question{{$index}}" placeholder="{{smallscreen ? '' : question.value }}" ng-model="question.answer" required /> + <input type="text" + autocomplete="off" + name="question{{$index}}" placeholder="{{smallscreen ? '' : question.value }}" ng-model="question.answer" required /> </label> <div class="form-errors" ng-show="recoverForm.$submitted && recoverForm['question{{$index}}'].$error" diff --git a/www/templates/wallet/slides/slides_saveID_1.html b/www/templates/wallet/slides/slides_saveID_1.html index 1e75b4ea632d4bfeb1ce793cbe43fe6984c9c1e0..3981bd6e48542485647098f5351c6a3f09dc9171 100644 --- a/www/templates/wallet/slides/slides_saveID_1.html +++ b/www/templates/wallet/slides/slides_saveID_1.html @@ -23,7 +23,9 @@ <a class="dark"><i class="icon ion-android-add" ng-click="addQuestion()"></i></a> <div class="list list-inset"> <label class="item item-input"> - <input type="text" placeholder="{{'ACCOUNT.SECURITY.ADD_QUESTION' | translate}}" ng-model="formData.addQuestion"/> + <input type="text" + autocomplete="off" + placeholder="{{'ACCOUNT.SECURITY.ADD_QUESTION' | translate}}" ng-model="formData.addQuestion"/> </label> </div> </div> diff --git a/www/templates/wallet/slides/slides_saveID_2.html b/www/templates/wallet/slides/slides_saveID_2.html index f1acc6d67bfa1b269d96a47b33bd0cafe7808556..f125eb114435e30e8afcd811757cafbc33e5c600 100644 --- a/www/templates/wallet/slides/slides_saveID_2.html +++ b/www/templates/wallet/slides/slides_saveID_2.html @@ -7,7 +7,10 @@ <label class="item item-input item-text-wrap {{smallscreen ? 'item-stacked-label' : 'item-floating-label'}}" ng-class="{'item-input-error': answersForm.$submitted && answersForm['question{{$index}}'].$invalid}"> <span class="input-label" style="width: 100%; max-width: inherit;">{{question.value | translate}}</span> - <input type="text" name="question{{$index}}" placeholder="{{smallscreen ? '' : question.value | translate}}" ng-model="question.answer" required /> + <input type="text" + autocomplete="off" + name="question{{$index}}" placeholder="{{smallscreen ? '' : question.value | translate}}" ng-model="question.answer" + required/> </label> <div class="form-errors" ng-show="answersForm.$submitted && answersForm['question{{$index}}'].$error"