summaryrefslogtreecommitdiffstats
path: root/routers/user
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-08-16 16:21:17 +0800
committerUnknwon <joe2010xtmf@163.com>2014-08-16 16:21:17 +0800
commitbba707de36d9bfbdb3001e3e89fac0c072aa14e9 (patch)
tree2b3ee7fc662baea04cecdf14b8a2758c108f83cc /routers/user
parent78add502d71dca43bb59ab9ad91745c64d0bf74d (diff)
downloadgitea-bba707de36d9bfbdb3001e3e89fac0c072aa14e9.tar.gz
gitea-bba707de36d9bfbdb3001e3e89fac0c072aa14e9.zip
Finish team list, create new team, join/leave team page
Diffstat (limited to 'routers/user')
-rw-r--r--routers/user/auth.go11
1 files changed, 5 insertions, 6 deletions
diff --git a/routers/user/auth.go b/routers/user/auth.go
index 404b22f24d..231ee66279 100644
--- a/routers/user/auth.go
+++ b/routers/user/auth.go
@@ -20,12 +20,11 @@ import (
)
const (
- SIGNIN base.TplName = "user/signin"
- SIGNUP base.TplName = "user/signup"
- DELETE base.TplName = "user/delete"
- ACTIVATE base.TplName = "user/activate"
- FORGOT_PASSWORD base.TplName = "user/forgot_passwd"
- RESET_PASSWORD base.TplName = "user/reset_passwd"
+ SIGNIN base.TplName = "user/auth/signin"
+ SIGNUP base.TplName = "user/auth/signup"
+ ACTIVATE base.TplName = "user/auth/activate"
+ FORGOT_PASSWORD base.TplName = "user/auth/forgot_passwd"
+ RESET_PASSWORD base.TplName = "user/auth/reset_passwd"
)
func SignIn(ctx *middleware.Context) {