simple proxmox

This commit is contained in:
William Mantly 2020-08-26 15:41:47 -04:00
parent f18967ce8b
commit 232c4d6b6f
Signed by: wmantly
GPG Key ID: 186A8370EFF937CA
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@ const {InviteToken, PasswordResetToken} = require('./../models/token');
/* GET home page. */
router.get('/', async function(req, res, next) {
res.render('home', { title: 'Express' });
res.render('topics', { title: 'Express' });
});
/* GET home page. */

View File

@ -35,6 +35,7 @@
<nav class="my-2 my-md-0 mr-md-3">
<a class="text-dark hover-effect" href="/topics"><i class="fad fa-tachometer-alt-fastest"></i> Topics</a>
<a class="text-dark hover-effect" href="/chat"><i class="fad fa-tachometer-alt-fastest"></i> Chat</a>
<a class="text-dark hover-effect" href="/proxmox"><i class="fad fa-tachometer-alt-fastest"></i> proxmox</a>
</nav>
<a class="hover-effect btn btn-outline-primary" onclick="app.auth.logOut(e => window.location.href='/')"><i class="fas fa-sign-out"></i> Log Out</a>