New renders user registration page
(w http.ResponseWriter, r *http.Request)
| 93 | |
| 94 | // New renders user registration page |
| 95 | func (u *Users) New(w http.ResponseWriter, r *http.Request) { |
| 96 | vd := getDataWithReferrer(r) |
| 97 | u.NewView.Render(w, r, &vd, http.StatusOK) |
| 98 | } |
| 99 | |
| 100 | // RegistrationForm is the form data for registering |
| 101 | type RegistrationForm struct { |