htmgo/htmgo-site/partials/form.go
2024-09-29 08:21:58 -05:00

13 lines
222 B
Go

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")),
)
}