choice.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <script lang='ts' setup>
  2. import useLogin from '../useLoginAndDownload'
  3. const { onSelectEmail } = useLogin()
  4. </script>
  5. <template>
  6. <div>
  7. <div class="custom-title-font text-24px fw-800 text-#333 mb-10px">
  8. <span class="custom-title-bg03">Sign In</span> to EJET Spark
  9. </div>
  10. <div class="text-14px text-#1A1A1A lh-22px mb-20px">
  11. Use your Email or another service to continue with EJET Spark!
  12. </div>
  13. <div class="b-rd-200px bg-#fff text-#333 b-1px b-solid b-#D8D8D8 h-48px lh-48px hover:b-#9B6CFF flex justify-center items-center cursor-pointer mb-24px text-14px fw-500">
  14. <img src="@/assets/images/google_logo.png" alt="" class="w-24px h-24px mr-10px">
  15. Continue with Google
  16. </div>
  17. <div class="b-rd-200px bg-#fff b-1px text-#333 b-solid b-#D8D8D8 h-48px lh-48px hover:b-#9B6CFF flex justify-center items-center cursor-pointer text-14px fw-500" @click="onSelectEmail">
  18. <img src="@/assets/images/mail_logo.png" class="w-24px h-24px mr-10px" alt="">
  19. Continue with Email
  20. </div>
  21. <div class="mt-40px lh-22px text-14px text-#767676">
  22. By continuing, you agree to EJET Spark’s <span class="text-#1A1A1A underline cursor-pointer fw-500">Terms of Use⁠.</span> Read our
  23. <span class="text-#1A1A1A underline cursor-pointer fw-500">Privacy Policy⁠.</span>
  24. </div>
  25. </div>
  26. </template>
  27. <style lang='less' scoped>
  28. </style>