index.vue 596 B

12345678910111213141516171819202122
  1. <template>
  2. <main
  3. class="flex h-screen flex-col justify-center items-center flex-1 flex-shrink-0"
  4. >
  5. <div class="flex flex-col justify-center text-center px-4">
  6. <div class="flex justify-center items-center py-6">
  7. <img src="/logo.svg" alt="hoppscotch-logo" class="w-20" />
  8. </div>
  9. <div class="flex flex-col items-center">
  10. <h1 class="text-2xl text-secondaryDark">Login to Admin Dashboard</h1>
  11. </div>
  12. <div class="flex my-6">
  13. <AppLogin />
  14. </div>
  15. </div>
  16. </main>
  17. </template>
  18. <route lang="yaml">
  19. meta:
  20. layout: empty
  21. </route>