LandingSignup.vue 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div id="docker-php-follow-along" class="w-full max-w-[940px] mx-auto flex flex-col py-24 px-4 md:px-8">
  3. <div class="w-full flex flex-col items-center justify-center rounded-2xl bg-[#161B26] px-6 py-10 md:p-16">
  4. <h2 class="font-sans text-4xl text-center text-[#F5F5F6] font-semibold">🚀 We're building in public</h2>
  5. <div class="mt-5 text-center text-xl font-sans font-normal text-[#94969C]">Follow along and get updates delivered right to your inbox.</div>
  6. <form action="https://app.convertkit.com/forms/5923949/subscriptions" class="seva-form formkit-form w-full" method="POST" data-sv-form="5848145" data-uid="78a3086587" data-format="inline" data-version="5" data-options='{"settings":{"after_subscribe":{"action":"message","success_message":"Success! Now check your email to confirm your subscription.","redirect_url":""},"analytics":{"google":null,"fathom":null,"facebook":null,"segment":null,"pinterest":null,"sparkloop":null,"googletagmanager":null},"modal":{"trigger":"timer","scroll_percentage":null,"timer":5,"devices":"all","show_once_every":15},"powered_by":{"show":false,"url":"https://convertkit.com/features/forms?utm_campaign=poweredby&amp;utm_content=form&amp;utm_medium=referral&amp;utm_source=dynamic"},"recaptcha":{"enabled":false},"return_visitor":{"action":"show","custom_content":""},"slide_in":{"display_in":"bottom_right","trigger":"timer","scroll_percentage":null,"timer":5,"devices":"all","show_once_every":15},"sticky_bar":{"display_in":"top","trigger":"timer","scroll_percentage":null,"timer":5,"devices":"all","show_once_every":15}},"version":"5"}' min-width="400 500 600 700 800">
  7. <div data-style="clean">
  8. <ul
  9. class="formkit-alert formkit-alert-error"
  10. data-element="errors"
  11. data-group="alert">
  12. </ul>
  13. <div
  14. data-element="fields"
  15. data-stacked="false"
  16. class="seva-fields formkit-fields flex flex-col w-full md:w-auto md:flex-row md:justify-center items-center mt-8">
  17. <div class="formkit-field w-full md:w-auto">
  18. <input
  19. class="formkit-input mb-4 md:mb-0 md:mr-4 w-full md:w-80 text-[#F5F5F6] p-[14px] rounded-lg bg-[#0C111D] border border-[#333741] shadow-sm font-sans text-base outline-none focus:ring-0 focus-visible:ring-0 focus-visible:ring-offset-0 focus:ring-offset-0 placeholder:text-[#85888E]"
  20. name="email_address"
  21. aria-label="Email Address"
  22. placeholder="Email Address"
  23. required
  24. type="email"/>
  25. </div>
  26. <button
  27. data-element="submit"
  28. class="formkit-submit formkit-submit w-full md:w-auto font-sans text-base font-semibold py-[14px] px-[18px] rounded-lg border border-[#155EEF] bg-[#155EEF] text-white">
  29. <span class="">Subscribe</span>
  30. </button>
  31. </div>
  32. </div>
  33. </form>
  34. </div>
  35. </div>
  36. </template>
  37. <script setup>
  38. </script>