mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 10:10:12 +01:00
f2610ef3ea
change comment
12 lines
306 B
Go
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")
|
|
}
|