#224 Add ids to login inputs
authorAdam Dullage <redacted>
Sat, 27 Jul 2024 15:14:45 +0000 (16:14 +0100)
committerAdam Dullage <redacted>
Sat, 27 Jul 2024 15:14:45 +0000 (16:14 +0100)
client/views/LogIn.vue

index 16d4437456c2998cf5d3e635d9b019d7e9c60c34..3a709f35221a3e18b607b92f0e4a3a4ca42f1868 100644 (file)
@@ -4,6 +4,7 @@
     <form @submit.prevent="logIn" class="flex max-w-80 flex-col items-center">
       <TextInput
         v-model="username"
+        id="username"
         placeholder="Username"
         class="mb-1"
         autocomplete="username"
@@ -11,6 +12,7 @@
       />
       <TextInput
         v-model="password"
+        id="password"
         placeholder="Password"
         type="password"
         class="mb-1"
@@ -20,6 +22,7 @@
       <TextInput
         v-if="globalStore.authType == authTypes.totp"
         v-model="totp"
+        id="one-time-code"
         placeholder="2FA Code"
         class="mb-1"
         autocomplete="one-time-code"
git clone https://git.99rst.org/PROJECT