mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 11:43:22 +02:00
11 lines
221 B
Go
11 lines
221 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func GetRegisterConfirmPage(w http.ResponseWriter, _ *http.Request) {
|
|
registerConfirmTmpl, _ := Container.GetPageUseCase.GetPage("setup2", nil)
|
|
_, _ = w.Write(registerConfirmTmpl)
|
|
}
|