retain Token verbiage in display name

since "Token" is used in several places in the 2FA setup screen
This commit is contained in:
Dylan Khor 2022-01-13 16:58:46 -05:00 committed by GitHub
parent 6490ef3787
commit b89efa49aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@
<div v-if="tokenRequired"> <div v-if="tokenRequired">
<div class="form-floating mt-3"> <div class="form-floating mt-3">
<input id="otp" v-model="token" type="text" maxlength="6" class="form-control" placeholder="123456"> <input id="otp" v-model="token" type="text" maxlength="6" class="form-control" placeholder="123456">
<label for="otp">{{ $t("2FA Code") }}</label> <label for="otp">{{ $t("2FA Token") }}</label>
</div> </div>
</div> </div>