diff --git a/templates/base/navbar.tmpl b/templates/base/navbar.tmpl
index e5b22192f5..932cae36d4 100644
--- a/templates/base/navbar.tmpl
+++ b/templates/base/navbar.tmpl
@@ -21,7 +21,7 @@
-
+
{{if .IsAdmin}}{{end}}
diff --git a/templates/issue/user.tmpl b/templates/issue/user.tmpl
index 1d49395cb9..812d9d8e24 100644
--- a/templates/issue/user.tmpl
+++ b/templates/issue/user.tmpl
@@ -29,7 +29,7 @@
diff --git a/templates/user/setting.tmpl b/templates/user/setting.tmpl
index 59357d7c93..a81f8bf61f 100644
--- a/templates/user/setting.tmpl
+++ b/templates/user/setting.tmpl
@@ -13,7 +13,7 @@
-
Cautious : your username is changing !
+
Caution : your username is changing !
diff --git a/templates/user/setting_nav.tmpl b/templates/user/setting_nav.tmpl
index 9c7ae5208f..387fe950b5 100644
--- a/templates/user/setting_nav.tmpl
+++ b/templates/user/setting_nav.tmpl
@@ -1,11 +1,11 @@
-
Account Setting
+
Account Settings
diff --git a/web.go b/web.go
index d8d5aba10d..23fa10796c 100644
--- a/web.go
+++ b/web.go
@@ -94,8 +94,8 @@ func runWeb(*cli.Context) {
m.Group("/user", func(r martini.Router) {
r.Get("/delete", user.Delete)
r.Post("/delete", user.DeletePost)
- r.Get("/setting", user.Setting)
- r.Post("/setting", bindIgnErr(auth.UpdateProfileForm{}), user.SettingPost)
+ r.Get("/settings", user.Setting)
+ r.Post("/settings", bindIgnErr(auth.UpdateProfileForm{}), user.SettingPost)
}, reqSignIn)
m.Group("/user", func(r martini.Router) {
r.Get("/feeds", middleware.Bind(auth.FeedsForm{}), user.Feeds)
@@ -105,7 +105,7 @@ func runWeb(*cli.Context) {
r.Post("/forget_password", user.ForgotPasswdPost)
r.Get("/logout", user.SignOut)
})
- m.Group("/user/setting", func(r martini.Router) {
+ m.Group("/user/settings", func(r martini.Router) {
r.Get("/social", user.SettingSocial)
r.Get("/password", user.SettingPassword)
r.Post("/password", bindIgnErr(auth.UpdatePasswdForm{}), user.SettingPasswordPost)