empty usercp
This commit is contained in:
parent
02b4a0a320
commit
d8686c94ee
4 changed files with 21 additions and 3 deletions
|
@ -61,8 +61,9 @@ FFTCGROUTER.post '/login', (req, res) ->
|
|||
|
||||
# Templates
|
||||
FFTCGROUTER.get '/:template.html', (req, res) ->
|
||||
# redirect logged-in users to user cp
|
||||
if req.session.user and req.params.template == 'index'
|
||||
return res.redirect '/game.html'
|
||||
return res.redirect '/usercp.html'
|
||||
|
||||
|
||||
# render requested template
|
||||
|
|
10
src/usercp.coffee
Normal file
10
src/usercp.coffee
Normal file
|
@ -0,0 +1,10 @@
|
|||
# libs
|
||||
window.$ = require('jquery')
|
||||
|
||||
# import bootstrap
|
||||
require './style/custom.scss'
|
||||
require 'bootstrap/js/dist/alert'
|
||||
|
||||
# on load
|
||||
$ ->
|
||||
return
|
6
views/usercp.pug
Normal file
6
views/usercp.pug
Normal file
|
@ -0,0 +1,6 @@
|
|||
doctype html
|
||||
html
|
||||
head
|
||||
title Crafty Things
|
||||
script(src='/usercp.bundle.js')
|
||||
body
|
|
@ -5,7 +5,8 @@ module.exports = {
|
|||
|
||||
entry: {
|
||||
index: './src/index.coffee',
|
||||
game: './src/game.coffee'
|
||||
game: './src/game.coffee',
|
||||
usercp: './src/usercp.coffee'
|
||||
},
|
||||
|
||||
devtool: 'inline-source-map',
|
||||
|
|
Reference in a new issue