fix: #325 autocomplete="off"
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
'text-[#FF3366]': !isAccountUnique,
|
'text-[#FF3366]': !isAccountUnique,
|
||||||
'border-[#FF3366]': !isAccountUnique,
|
'border-[#FF3366]': !isAccountUnique,
|
||||||
}"
|
}"
|
||||||
:readonly="!isEditable"
|
:readonly="!isEditable" autocomplete="off"
|
||||||
@dblclick="onInputDoubleClick"
|
@dblclick="onInputDoubleClick"
|
||||||
/>
|
/>
|
||||||
<div v-show="!isAccountUnique" class="error-wrapper my-2">
|
<div v-show="!isAccountUnique" class="error-wrapper my-2">
|
||||||
@@ -44,6 +44,7 @@
|
|||||||
<input id="input_name_field"
|
<input id="input_name_field"
|
||||||
class="w-[454px] rounded p-1 border border-[1px] border-[#64748B] flex items-center h-[40px] outline-none"
|
class="w-[454px] rounded p-1 border border-[1px] border-[#64748B] flex items-center h-[40px] outline-none"
|
||||||
v-model="inputName" :readonly="!isEditable" @dblclick="onInputDoubleClick" @focus="onInputNameFocus"
|
v-model="inputName" :readonly="!isEditable" @dblclick="onInputDoubleClick" @focus="onInputNameFocus"
|
||||||
|
autocomplete="off"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div v-show="!isSSO" class="input-row w-full flex py-2 h-[40px] mb-4 items-center
|
<div v-show="!isSSO" class="input-row w-full flex py-2 h-[40px] mb-4 items-center
|
||||||
@@ -55,7 +56,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="w-[454px] rounded border-[1px] border-[#64748B] flex items-center h-[40px] relative">
|
<div class="w-[454px] rounded border-[1px] border-[#64748B] flex items-center h-[40px] relative">
|
||||||
<input id="input_first_pwd" class="outline-none p-1 w-[352px]" :type="isPwdEyeOn ? 'text' : 'password'"
|
<input id="input_first_pwd" class="outline-none p-1 w-[352px]" :type="isPwdEyeOn ? 'text' : 'password'"
|
||||||
v-model="inputPwd" :readonly="!isEditable" @dblclick="onInputDoubleClick"/>
|
v-model="inputPwd" :readonly="!isEditable" @dblclick="onInputDoubleClick"
|
||||||
|
autocomplete="off" />
|
||||||
<img v-if="isPwdEyeOn" src='@/assets/icon-eye-open.svg' class="absolute right-[8px] cursor-pointer"
|
<img v-if="isPwdEyeOn" src='@/assets/icon-eye-open.svg' class="absolute right-[8px] cursor-pointer"
|
||||||
@click="togglePwdEyeBtn" alt=""/>
|
@click="togglePwdEyeBtn" alt=""/>
|
||||||
<img v-else src='@/assets/icon-eye-hide.svg' class="absolute right-[8px] cursor-pointer" @click="togglePwdEyeBtn" alt="eye"/>
|
<img v-else src='@/assets/icon-eye-hide.svg' class="absolute right-[8px] cursor-pointer" @click="togglePwdEyeBtn" alt="eye"/>
|
||||||
@@ -82,7 +84,7 @@
|
|||||||
:class="{
|
:class="{
|
||||||
'text-[#000000]': isPwdMatched,
|
'text-[#000000]': isPwdMatched,
|
||||||
'text-[#FF3366]': !isPwdMatched,
|
'text-[#FF3366]': !isPwdMatched,
|
||||||
}"/>
|
}" autocomplete="off"/>
|
||||||
<img v-if="isPwdConfirmEyeOn" src='@/assets/icon-eye-open.svg' class="absolute right-[8px] cursor-pointer"
|
<img v-if="isPwdConfirmEyeOn" src='@/assets/icon-eye-open.svg' class="absolute right-[8px] cursor-pointer"
|
||||||
@click="togglePwdConfirmEyeBtn" alt="eye"/>
|
@click="togglePwdConfirmEyeBtn" alt="eye"/>
|
||||||
<img v-else src='@/assets/icon-eye-hide.svg' class="absolute right-[8px] cursor-pointer" @click="togglePwdConfirmEyeBtn" alt="eye"/>
|
<img v-else src='@/assets/icon-eye-hide.svg' class="absolute right-[8px] cursor-pointer" @click="togglePwdConfirmEyeBtn" alt="eye"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user