| | |
| | | <span class="textColor"></span> |
| | | <img src="../../assets/image/login/more.png" alt=""> |
| | | </div> |
| | | <input autocomplete="new-password" class="inputBackground" v-if="typeText == 'password'" :type="passwordType" |
| | | :placeholder="placeholderText" :value="value" @input="onInput" :disabled="disabled"> |
| | | <input class="inputBackground" v-else type="text" :disabled="disabled" :placeholder="placeholderText" |
| | | :value="value" @input="onInput"> |
| | | <div> |
| | | <input class="inputBackground" v-if="typeText == 'password'" :type="passwordType" |
| | | :placeholder="placeholderText" v-model="value" @input="onInput" > |
| | | <input class="inputBackground" v-else type="text" :placeholder="placeholderText" |
| | | v-model="value" @input="onInput"> |
| | | </div> |
| | | |
| | | <div class="rightCon"> |
| | | <div class="closeBox" v-if="clearBtn" @click="clear"><img src="../../assets/image/login/clear.png" alt=""> |
| | | </div> |