harbor/controllers/changepassword.go

12 lines
307 B
Go
Raw Normal View History

2016-07-06 07:09:32 +02:00
package controllers
// ChangePasswordController handles request to /change_password
2016-07-06 07:09:32 +02:00
type ChangePasswordController struct {
BaseController
}
// Get renders the change password page
2016-07-06 07:09:32 +02:00
func (asc *ChangePasswordController) Get() {
asc.Forward("page_title_change_password", "change-password.htm")
2016-07-06 07:09:32 +02:00
}