Add autocomplete attribute to password input

This commit is contained in:
İbrahim Çetin 2024-08-07 10:29:33 +03:00
parent babb9983aa
commit 95934c6008
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@
</svg>
</div>
<input type="password" name="password" :placeholder="$t('password')" v-model="password"
<input type="password" name="password" :placeholder="$t('password')" v-model="password" autocomplete="current-password"
class="px-3 py-2 text-sm dark:bg-neutral-700 text-gray-500 dark:text-gray-500 mb-5 border-2 border-gray-100 dark:border-neutral-800 rounded-lg w-full focus:border-red-800 dark:focus:border-red-800 dark:placeholder:text-neutral-400 outline-none" />
<button v-if="authenticating"