GuidedSetupAutomatedInfo.vue 552 B

12345678910111213141516
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import LayoutPublicPage from '#desktop/components/layout/LayoutPublicPage/LayoutPublicPage.vue'
  4. </script>
  5. <template>
  6. <LayoutPublicPage box-size="medium" :title="__('Automated Setup')">
  7. <div class="text-center">
  8. <CommonLabel>{{
  9. $t('This system is configured for automated setup.')
  10. }}</CommonLabel>
  11. <CommonLabel>{{ $t('Please use the provided URL.') }}</CommonLabel>
  12. </div>
  13. </LayoutPublicPage>
  14. </template>