harbor/controllers/changepassword.go
yhua123 f2610ef3ea Update changepassword.go
change comment
2016-07-06 14:00:48 +08:00

12 lines
306 B
Go

package controllers
// ChangePasswordController handles request to /change_password
type ChangePasswordController struct {
BaseController
}
// Get renders the change password page
func (asc *ChangePasswordController) Get() {
asc.Forward("page_title_reset_password", "change-password.htm")
}