2016-06-16 08:10:35 +02:00
|
|
|
package controllers
|
2016-05-06 14:37:44 +02:00
|
|
|
|
2016-06-22 09:15:25 +02:00
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2016-06-16 08:10:35 +02:00
|
|
|
// SignUpController handles requests to /sign_up
|
2016-05-06 14:37:44 +02:00
|
|
|
type SignUpController struct {
|
|
|
|
BaseController
|
|
|
|
}
|
|
|
|
|
2016-05-23 09:43:15 +02:00
|
|
|
// Get renders sign up page
|
2016-05-06 14:37:44 +02:00
|
|
|
func (suc *SignUpController) Get() {
|
2016-06-22 09:15:25 +02:00
|
|
|
if suc.AuthMode != "db_auth" {
|
|
|
|
suc.CustomAbort(http.StatusUnauthorized, "Status unauthorized.")
|
|
|
|
}
|
|
|
|
suc.Data["AddNew"] = false
|
2016-05-06 14:37:44 +02:00
|
|
|
suc.Forward("Sign Up", "sign-up.htm")
|
|
|
|
}
|