移动文件

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: get:
signup: (req, res) -> signup: (req, res) ->
mAccount.authenticate req.token, (account) -> mAccount.authenticate req.token, (account) ->
res.render 'signup', res.render 'account/signup',
account: account account: account
login: (req, res) -> login: (req, res) ->
mAccount.authenticate req.token, (account) -> mAccount.authenticate req.token, (account) ->
res.render 'login', res.render 'account/login',
account: account account: account
post: post:

View File

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