mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
11 lines
268 B
Go
11 lines
268 B
Go
package api
|
|
|
|
import "net/http"
|
|
|
|
func GetRegisterPendingPage(w http.ResponseWriter, _ *http.Request) {
|
|
registerPendingTmpl, _ := Container.GetPageUseCase.GetPage("registerPending", map[string]interface{}{
|
|
"Head": headTmpl,
|
|
})
|
|
_, _ = w.Write(registerPendingTmpl)
|
|
}
|