s1llyw0rdz/web/handler/form/settings.go

22 lines
359 B
Go
Raw Normal View History

2021-11-25 06:37:30 +00:00
package form
import (
"net/http"
)
type SettingsForm struct {
Homepage string
About string
2021-11-26 22:36:48 +00:00
Picture string
2021-11-28 14:31:51 +00:00
Email string
2021-11-25 06:37:30 +00:00
}
func NewSettingsForm(r *http.Request) *SettingsForm {
return &SettingsForm{
Homepage: r.FormValue("homepage"),
About: r.FormValue("about"),
2021-11-26 22:36:48 +00:00
Picture: r.FormValue("picture"),
2021-11-28 14:31:51 +00:00
Email: r.FormValue("email"),
2021-11-25 06:37:30 +00:00
}
}