2023-12-09 14:47:03 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="flex mt-6 mb-10">
|
|
|
|
<div class="w-full md:max-w-6xl mx-auto px-4 flex items-center md:flex-row-reverse flex-wrap">
|
|
|
|
<div class="w-full lg:w-1/2 md:p-6">
|
|
|
|
<app-sumo-register class="mb-10 p-6 lg:hidden" />
|
|
|
|
<div class="border rounded-md p-6 shadow-md sticky top-4">
|
|
|
|
<h2 class="font-semibold text-2xl">
|
|
|
|
Create an account
|
|
|
|
</h2>
|
|
|
|
<small>Sign up in less than 2 minutes.</small>
|
|
|
|
<register-form />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="w-full hidden lg:block lg:w-1/2 md:p-6 mt-8 md:mt-0 ">
|
|
|
|
<app-sumo-register class="mb-10" />
|
|
|
|
<h1 class="font-bold">
|
|
|
|
Create beautiful forms and share them anywhere
|
|
|
|
</h1>
|
|
|
|
<p class="text-gray-900 my-4 text-lg">
|
|
|
|
It takes seconds, you don't need to know how to code and it's free.
|
|
|
|
</p>
|
|
|
|
<div class="flex flex-wrap justify-center">
|
|
|
|
<p class="px-3 pb-3 text-sm text-gray-500">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 inline" fill="none" viewBox="0 0 24 24"
|
|
|
|
stroke="currentColor" stroke-width="2"
|
|
|
|
>
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
|
|
</svg>
|
|
|
|
Unlimited forms
|
|
|
|
</p>
|
|
|
|
<p class="px-3 pb-3 text-sm text-gray-500">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 inline" fill="none" viewBox="0 0 24 24"
|
|
|
|
stroke="currentColor" stroke-width="2"
|
|
|
|
>
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
|
|
</svg>
|
|
|
|
Unlimited fields
|
|
|
|
</p>
|
|
|
|
<p class="px-3 pb-3 text-sm text-gray-500">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 inline" fill="none" viewBox="0 0 24 24"
|
|
|
|
stroke="currentColor" stroke-width="2"
|
|
|
|
>
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
|
|
</svg>
|
|
|
|
Unlimited submissions
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<open-form-footer />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-12-11 10:56:21 +00:00
|
|
|
import RegisterForm from "~/components/pages/auth/components/RegisterForm.vue"
|
|
|
|
import AppSumoRegister from "~/components/vendor/appsumo/AppSumoRegister.vue"
|
2023-12-09 14:47:03 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
AppSumoRegister,
|
|
|
|
RegisterForm
|
|
|
|
},
|
|
|
|
|
2024-01-02 15:35:16 +00:00
|
|
|
setup() {
|
2024-01-04 17:38:50 +00:00
|
|
|
useOpnSeoMeta({
|
|
|
|
title: 'Register'
|
|
|
|
})
|
|
|
|
|
2024-01-02 15:35:16 +00:00
|
|
|
definePageMeta({
|
|
|
|
middleware: "guest"
|
|
|
|
})
|
2024-01-06 15:27:54 +00:00
|
|
|
|
2024-01-02 15:35:16 +00:00
|
|
|
defineRouteRules({
|
2024-01-08 21:34:21 +00:00
|
|
|
swr: 3600
|
2024-01-02 15:35:16 +00:00
|
|
|
})
|
|
|
|
},
|
2023-12-09 14:47:03 +00:00
|
|
|
|
|
|
|
data: () => ({
|
|
|
|
}),
|
|
|
|
|
|
|
|
computed: {},
|
|
|
|
|
|
|
|
methods: {}
|
|
|
|
}
|
|
|
|
</script>
|