This commit is contained in:
2021-03-12 19:38:08 +00:00
parent daf96829d3
commit 93b7faa3b2
2 changed files with 4 additions and 2 deletions

View File

@@ -190,7 +190,7 @@ todo: research practicality of supporting SMS from server for things like notifi
todo: 2fa is going to be an absolute must have pretty soon, look into what's involved again
https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3395
todo: user list shoudl show 2fa enabled
todo TEST ON LINUX

View File

@@ -12,6 +12,8 @@
:label="authEnterPin"
required
:error-messages="pinError"
@keyup.enter="tfaVerify"
autofocus
></v-text-field>
</v-card-text>
<v-card-actions>
@@ -21,7 +23,7 @@
<v-spacer></v-spacer>
<v-btn
color="blue darken-1"
:disabled="pin==null || pin.length==0"
:disabled="pin == null || pin.length == 0"
text
@click="tfaVerify()"
>{{ authVerifyCode }}</v-btn