authentication.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <script setup lang="ts">
  2. import { $t } from '@vben/locales';
  3. import { preference, usePreference } from '@vben/preference';
  4. import AuthenticationFromView from './from-view.vue';
  5. import SloganIcon from './icons/slogan.vue';
  6. import Toolbar from './toolbar.vue';
  7. defineOptions({
  8. name: 'Authentication',
  9. });
  10. const { authPanelCenter, authPanelLeft, authPanelRight } = usePreference();
  11. </script>
  12. <template>
  13. <div
  14. class="bg-background flex min-h-full flex-1 select-none overflow-x-hidden"
  15. >
  16. <AuthenticationFromView
  17. v-if="authPanelLeft"
  18. class="min-h-full w-2/5"
  19. transition-name="slide-left"
  20. />
  21. <div class="absolute left-0 top-0 z-10 flex flex-1">
  22. <div
  23. class="text-foreground ml-4 mt-4 flex flex-1 items-center sm:left-6 sm:top-6"
  24. :class="
  25. authPanelLeft || authPanelCenter
  26. ? 'lg:text-foreground'
  27. : 'lg:text-white'
  28. "
  29. >
  30. <img
  31. :alt="preference.appName"
  32. :src="preference.logo"
  33. :width="42"
  34. class="mr-2"
  35. />
  36. <p class="text-xl font-medium">
  37. {{ preference.appName }}
  38. </p>
  39. </div>
  40. </div>
  41. <div v-if="!authPanelCenter" class="relative hidden w-0 flex-1 lg:block">
  42. <div
  43. class="absolute inset-0 h-full w-full bg-[var(--color-authentication)]"
  44. >
  45. <div class="flex-center mr-20 flex h-full flex-col">
  46. <SloganIcon
  47. :alt="preference.appName"
  48. class="animate-float h-64 w-2/5"
  49. />
  50. <div class="text-1xl mt-6 font-sans text-white lg:text-2xl">
  51. {{ $t('authentication.layout-title') }}
  52. </div>
  53. <div class="dark:text-muted-foreground mt-2 text-white/60">
  54. {{ $t('authentication.layout-desc') }}
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. <div
  60. v-if="authPanelCenter"
  61. class="flex-center w-full dark:bg-[var(--color-authentication)]"
  62. >
  63. <AuthenticationFromView
  64. class="enter-y md:bg-background w-full rounded-3xl pb-20 shadow-2xl md:w-2/3 lg:w-1/2 xl:w-2/5"
  65. >
  66. <template #toolbar>
  67. <Toolbar class="bg-muted" />
  68. </template>
  69. </AuthenticationFromView>
  70. </div>
  71. <AuthenticationFromView
  72. v-if="authPanelRight"
  73. class="min-h-full w-2/5 flex-1"
  74. />
  75. </div>
  76. </template>
  77. <!-- background-image: radial-gradient(
  78. rgba(255, 255, 255, 0.1) 1px,
  79. transparent 1px
  80. ); -->