Fix 1st step login on Default symbol
This commit is contained in:
parent
4f93e36822
commit
8ba1e5f495
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ router.get("/powiatwulkanowy(/)?", (req, res) => {
|
|||
});
|
||||
|
||||
// GET login page
|
||||
router.get("/powiatwulkanowy/Account/LogOn", (req, res) => {
|
||||
res.render("login-form", {title: "Logowanie (powiatwulkanowy)"});
|
||||
router.get("/:symbol/Account/LogOn", (req, res) => {
|
||||
res.render("login-form", {title: "Logowanie (" + req.param("symbol") + ")"});
|
||||
});
|
||||
|
||||
// POST login
|
||||
|
|
Loading…
Reference in a new issue