1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
letu/routes/login.js

8 lines
173 B
JavaScript

let express = require("express");
let router = express.Router();
router.get("/", (req, res) => {
res.render("login", { title: "L'ETU" });
});
module.exports = router;