mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
2a915785d3
use key "page_title_change_password"
12 lines
307 B
Go
12 lines
307 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_change_password", "change-password.htm")
|
|
}
|