Skip to content

Commit

Permalink
added autocompletion to login
Browse files Browse the repository at this point in the history
  • Loading branch information
zurdi15 committed Aug 5, 2024
1 parent b9a68ad commit 02cf0fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import identityApi from "@/services/api/identity";
import api from "@/services/api/index";
import storeHeartbeat from "@/stores/heartbeat";
import type { Events } from "@/types/emitter";
import Cookies from "js-cookie";
import type { Emitter } from "mitt";
import { inject, ref } from "vue";
import { useRouter } from "vue-router";
Expand Down Expand Up @@ -90,6 +89,7 @@ async function login() {
<v-form @submit.prevent>
<v-text-field
v-model="username"
autocomplete="on"
required
prepend-inner-icon="mdi-account"
type="text"
Expand All @@ -99,6 +99,7 @@ async function login() {
/>
<v-text-field
v-model="password"
autocomplete="on"
required
prepend-inner-icon="mdi-lock"
:type="visiblePassword ? 'text' : 'password'"
Expand Down

0 comments on commit 02cf0fd

Please sign in to comment.