32b73b850a
* preplan otp, better qrcode library * add 2fa as feature * add totp generation * working totp lifecycle * don't allow disabled user to log in not a security issue as permission handler would fail anyway * require 2fa on login if enabled * update packages * fix typo * remove console.logs
39 lines
720 B
Vue
39 lines
720 B
Vue
<template>
|
|
<div class="flex items-center">
|
|
<FormLabel :for="id">
|
|
{{ label }}
|
|
</FormLabel>
|
|
<BaseTooltip v-if="description" :text="description">
|
|
<IconsInfo class="size-4" />
|
|
</BaseTooltip>
|
|
</div>
|
|
<BaseInput
|
|
:id="id"
|
|
v-model.trim="data"
|
|
:name="id"
|
|
type="text"
|
|
:autocomplete="autocomplete"
|
|
:placeholder="placeholder"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{
|
|
id: string;
|
|
label: string;
|
|
description?: string;
|
|
autocomplete?: string;
|
|
placeholder?: string;
|
|
}>();
|
|
|
|
const data = defineModel<string | null>({
|
|
set(value) {
|
|
const temp = value?.trim() ?? null;
|
|
if (temp === '') {
|
|
return null;
|
|
}
|
|
return temp;
|
|
},
|
|
});
|
|
</script>
|