Browse Source

Add autocomplete attribute to password input

pull/1249/head
İbrahim Çetin 8 months ago
parent
commit
95934c6008
  1. 2
      src/www/index.html

2
src/www/index.html

@ -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"

Loading…
Cancel
Save