package tpl import "fmt" var captchaHandler = templ.NewOnceHandle() templ AddQuotePage(form *AddQuoteForm, err string) { {{ captchaURL := fmt.Sprintf("/captcha/download/%s.png", form.CaptchaID) }} @Layout(HeaderParams{}) {

Добавление цитаты

if err != "" {
Ошибка
{ err }
}
@captchaHandler.Once() { } } } type AddQuoteForm struct { Quote string `form:"quote"` CaptchaID string `form:"captcha_id"` CaptchaValue string `form:"captcha_value"` }