移动文件

This commit is contained in:
jysperm
2014-04-17 01:17:50 +08:00
parent bcfe36a37a
commit c959db5374
3 changed files with 3 additions and 3 deletions

View File

@@ -6,12 +6,12 @@ module.exports =
get:
signup: (req, res) ->
mAccount.authenticate req.token, (account) ->
res.render 'signup',
res.render 'account/signup',
account: account
login: (req, res) ->
mAccount.authenticate req.token, (account) ->
res.render 'login',
res.render 'account/login',
account: account
post:

View File

@@ -1,4 +1,4 @@
extends layout
extends ../layout
prepend head
title #{t("word.signup")} | #{t('app.name')}