TwoFactorConfiguration.vue 685 B

1234567891011121314151617181920212223242526272829
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. defineProps<{
  4. data?: unknown
  5. }>()
  6. defineEmits<{
  7. (event: 'redirect', url: string): void
  8. }>()
  9. </script>
  10. <template>
  11. <div class="mb-7 text-center text-sm">
  12. <CommonLabel>
  13. {{ $t('The two-factor authentication is not configured yet.') }}
  14. </CommonLabel>
  15. </div>
  16. <div class="mb-7 text-center text-sm">
  17. <CommonLink link="/#">
  18. {{ $t('Click here to set up a two-factor authentication method.') }}
  19. <CommonIcon
  20. class="inline align-baseline"
  21. name="box-arrow-up-right"
  22. size="xs"
  23. />
  24. </CommonLink>
  25. </div>
  26. </template>