Improved tutorial

This commit is contained in:
Thomas FORGIONE
2015-07-30 13:11:28 +02:00
parent c690accd4b
commit 3e442500ca
10 changed files with 59 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
module.exports.index = function(req, res) {
res.setHeader('Content-Type', 'text/html');
res.render('index.jade', res.locals, function(err, result) {
res.send(result);
});
};

View File

@@ -0,0 +1,3 @@
module.exports = {
'/intro': 'index',
};

View File

@@ -0,0 +1,12 @@
extends ../../../views/base.jade
block content
h1 Welcome !
p This game will be in four steps :
ol
li We'll ask you a little information so we can know you a little.
li Then, you will try a tutorial of a 3D interface.
li When you finish the tutorial, the main part will start. There will be 3 scenes and you will be asked to complete tasks.
li Once you finished, there will be a short questionnary so we can know what you think of our interface.
h2 You can now <a href="/user-study">start when you are ready</a>