htmgo/htmgo-site/partials/form.go

16 lines
230 B
Go
Raw Normal View History

2024-09-29 13:21:58 +00:00
package partials
import (
"github.com/maddalax/htmgo/framework/h"
"time"
)
func SubmitForm(ctx *h.RequestContext) *h.Partial {
time.Sleep(time.Second * 3)
return h.NewPartial(
h.Div(
h.Text("Form submitted"),
),
2024-09-29 13:21:58 +00:00
)
}