feat: profile components

This commit is contained in:
NGPixel
2018-05-20 23:27:06 -04:00
parent 17b2117b39
commit b1499d1d64
11 changed files with 238 additions and 6 deletions

View File

@@ -15,6 +15,13 @@ router.get(['/a', '/a/*'], (req, res, next) => {
res.render('main/admin')
})
/**
* Profile
*/
router.get(['/p', '/p/*'], (req, res, next) => {
res.render('main/profile')
})
/**
* View document
*/