mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
12 lines
310 B
Go
12 lines
310 B
Go
|
package controllers
|
||
|
|
||
|
// AccountPwdSettingController handles request to /account_setting
|
||
|
type ChangePasswordController struct {
|
||
|
BaseController
|
||
|
}
|
||
|
|
||
|
// Get renders the account settings page
|
||
|
func (asc *ChangePasswordController) Get() {
|
||
|
asc.Forward("page_title_reset_password", "change-password.htm")
|
||
|
}
|