Account page

This commit is contained in:
NGPixel
2016-11-01 23:02:11 -04:00
parent a05560e9fc
commit 1cf38be217
13 changed files with 116 additions and 10 deletions

View File

@@ -7,7 +7,11 @@ var router = express.Router();
* Admin
*/
router.get('/', (req, res) => {
res.send('OK');
res.redirect('/admin/profile');
});
router.get('/profile', (req, res) => {
res.render('pages/account.pug');
});
module.exports = router;