Fixed template tag

This commit is contained in:
Wyatt Johnson
2017-01-24 15:40:17 -07:00
parent 66b0babdde
commit 5a2d8c5201
+1 -1
View File
@@ -15,7 +15,7 @@ router.get('/login', (req, res, next) => {
});
router.get('*', (req, res) => {
res.render('ADMIN', {basePath: '/client/coral-admin'});
res.render('admin', {basePath: '/client/coral-admin'});
});
module.exports = router;