feat: add payment method support

This commit is contained in:
Prad Nukala
2024-10-07 16:30:54 -04:00
parent 55f3e0f7e0
commit 8bd68c4269
15 changed files with 286 additions and 38 deletions
@@ -1,6 +1,6 @@
package forms
templ privacyConsentForm() {
templ PrivacyConsentForm() {
<div class="border rounded-lg shadow-sm bg-card text-zinc-900">
<div class="flex flex-col space-y-1.5 p-6"></div>
<div class="p-6 pt-0 space-y-2">
@@ -8,7 +8,7 @@ package forms
import "github.com/a-h/templ"
import templruntime "github.com/a-h/templ/runtime"
func privacyConsentForm() templ.Component {
func PrivacyConsentForm() templ.Component {
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
@@ -1,6 +1,6 @@
package forms
templ ProfileDetailsForm() {
templ BasicDetailsForm() {
<div class="border rounded-lg shadow-sm bg-card text-zinc-900">
<div class="flex flex-col space-y-1.5 p-6"></div>
<div class="p-6 pt-0 space-y-2">
@@ -8,7 +8,7 @@ package forms
import "github.com/a-h/templ"
import templruntime "github.com/a-h/templ/runtime"
func ProfileDetailsForm() templ.Component {
func BasicDetailsForm() templ.Component {
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {