2023-12-09 14:47:03 +00:00
|
|
|
<template>
|
|
|
|
<div class="flex flex-col min-h-full border-t">
|
|
|
|
<section class="py-12 sm:py-16 bg-gray-50 border-b border-gray-200">
|
|
|
|
<div class="px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
|
|
|
|
<div class="text-center max-w-xl mx-auto">
|
|
|
|
<h1 class="text-3xl sm:text-4xl lg:text-5xl font-bold tracking-tight text-gray-900">
|
|
|
|
My Form Templates
|
|
|
|
</h1>
|
|
|
|
<p class="text-gray-600 mt-4 text-lg font-normal">
|
|
|
|
Share your best form as templates so that others can re-use them!
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2024-01-02 15:35:16 +00:00
|
|
|
<!-- <templates-list :only-my="true" />-->
|
2023-12-09 14:47:03 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import TemplatesList from '../../components/pages/templates/TemplatesList.vue'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: { TemplatesList },
|
|
|
|
|
2024-01-04 17:38:50 +00:00
|
|
|
setup () {
|
2024-01-05 09:47:36 +00:00
|
|
|
definePageMeta({
|
|
|
|
middleware: "auth"
|
|
|
|
})
|
2024-01-04 17:38:50 +00:00
|
|
|
useOpnSeoMeta({
|
|
|
|
title: 'My Templates',
|
|
|
|
description: 'Our collection of beautiful templates to create your own forms!'
|
|
|
|
})
|
2023-12-09 14:47:03 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
data () {
|
|
|
|
return {}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted () {},
|
|
|
|
|
|
|
|
computed: {},
|
|
|
|
|
|
|
|
methods: {}
|
|
|
|
}
|
|
|
|
</script>
|