Skip to content

Instantly share code, notes, and snippets.

@HussainArif12
Last active June 29, 2022 22:37
Show Gist options
  • Save HussainArif12/3797a24ec83a833de038e07bc9ed274d to your computer and use it in GitHub Desktop.
Save HussainArif12/3797a24ec83a833de038e07bc9ed274d to your computer and use it in GitHub Desktop.
//filename: routes/index.js
const { ensureAuth, ensureGuest } = require("../middleware/auth");
router.get("/", ensureGuest, (req, res) => {
res.render("login", {
layout: "login",
});
});
router.get("/dashboard", ensureAuth, (req, res) => {
res.render("dashboard");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment