main.js 511 Bytes
var express = require('express');
var router = express.Router();

//루트 페이지 (메인페이지)에서 실행됨 : title 할당하고 main.html 띄워줌.
router.get('/', function (req, res, next) {
    res.render('main.html', { title: 'Culture Gallery' });
    console.log('main 접속 성공');
});

/* GET home page. */
router.get('/login', function (req, res, next) {
    res.render('login.html', { title: 'Login1' });
    console.log('로그인 페이지 접속 성공');
});
module.exports = router;