mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
20 lines
416 B
Go
20 lines
416 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// SignUpController handles requests to /sign_up
|
|
type SignUpController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get renders sign up page
|
|
func (suc *SignUpController) Get() {
|
|
if suc.AuthMode != "db_auth" || !suc.SelfRegistration {
|
|
suc.CustomAbort(http.StatusUnauthorized, "Status unauthorized.")
|
|
}
|
|
suc.Data["AddNew"] = false
|
|
suc.Forward("page_title_sign_up", "sign-up.htm")
|
|
}
|