Added the templates.
This commit is contained in:
commit
b40c29cced
17 changed files with 946 additions and 0 deletions
13
README.md
Normal file
13
README.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# SEG3125-LAB6
|
||||
|
||||
The Survey Analysis made by Ruchira Perrera, Sam Oyediran, Batuhan Basoglu, and Kene Ojukwu
|
||||
|
||||
https://arctichawk1.github.io/SEG3125-LAB6/
|
||||
|
||||
|
||||
# Authors
|
||||
|
||||
- Batuhan Basoglu, 300001274 - ArcticHawk1
|
||||
- Ruchira Perera, 8714992 - ruchirawp
|
||||
- Sam Oyediran, 300016349 - soyed
|
||||
- Kene Ojukwu, 300027974 - kene17
|
21
app.js
Normal file
21
app.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Entry point for the application
|
||||
|
||||
// express application
|
||||
var express = require('express');
|
||||
// require the controller we make
|
||||
var surveyController = require('./surveyController');
|
||||
|
||||
var app = express();
|
||||
|
||||
// set up template engine
|
||||
app.set('view engine', 'ejs');
|
||||
|
||||
// static file serving
|
||||
app.use(express.static('./public'));
|
||||
|
||||
// fire function from surveyController
|
||||
surveyController(app);
|
||||
|
||||
// listen to port
|
||||
app.listen(3000);
|
||||
console.log('listening port 3000');
|
1
data/animal.json
Normal file
1
data/animal.json
Normal file
|
@ -0,0 +1 @@
|
|||
[{"animal":"Cat","count":5},{"animal":"Dog","count":1},{"animal":"Turtle","count":12}]
|
1
data/color.json
Normal file
1
data/color.json
Normal file
|
@ -0,0 +1 @@
|
|||
[{"color":"Red","count":10},{"color":"Green","count":9},{"color":"Blue","count":7}]
|
1
data/fruit.json
Normal file
1
data/fruit.json
Normal file
|
@ -0,0 +1 @@
|
|||
[{"fruit":"apple","count":1},{"fruit":"pear","count":2},{"fruit":"papaya","count":1},{"fruit":"strawberry","count":2},{"fruit":"peach","count":2},{"fruit":"kiwi","count":1}]
|
BIN
images/background.jpg
Normal file
BIN
images/background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
BIN
images/bg2.jpg
Normal file
BIN
images/bg2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
images/bg3.jpg
Normal file
BIN
images/bg3.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
images/fb.png
Normal file
BIN
images/fb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
138
index.html
Normal file
138
index.html
Normal file
|
@ -0,0 +1,138 @@
|
|||
<!doctype html>
|
||||
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
|
||||
<title>Survey of Facebook UI</title>
|
||||
<meta name="description" content="Survey of Facebook UI">
|
||||
<meta name="author" content="SitePoint">
|
||||
|
||||
<link rel="stylesheet" href="css/styles.css?v=1.0">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h1>Questionnaire of the Facebook UI/UX</h1>
|
||||
<a href="https://www.facebook.com/">
|
||||
<img src="images/fb.png" alt="Facebook" class="fb">
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<section class="survey_body">
|
||||
<p style="font-size:150%;">Give us your opinion about <a href="https://www.facebook.com/">Facebook</a></p>
|
||||
<form>
|
||||
|
||||
<div class="form-control">
|
||||
<label id="name-label">First Name:</label>
|
||||
<input type="text" placeholder="Enter the First Name" required>
|
||||
</div>
|
||||
<div class="form-control">
|
||||
<label id="name-label">Last Name:</label>
|
||||
<input type="text" placeholder="Enter the Last Name" required>
|
||||
</div>
|
||||
<div class="form-control">
|
||||
<label id="name-label">E-mail:</label>
|
||||
<input type="text" placeholder="Enter the Email" required>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div id="questions">
|
||||
|
||||
|
||||
<div class="two">
|
||||
<form>
|
||||
<label id="radio">Did you enjoy your experience using Facebook?</label>
|
||||
<br>
|
||||
<div style="margin-right: 4px;">
|
||||
<input type="radio" value="yes" name="enjoy">
|
||||
<label for="yes">Yes</label>
|
||||
<input type="radio" value="no" name="enjoy">
|
||||
<label for="no">No</label>
|
||||
</div>
|
||||
</form>
|
||||
<br>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<label>What web browser are you using the Facebook with?</label>
|
||||
<div style="margin-left: 22px;">
|
||||
<form action="/action_page.php" method="get">
|
||||
<label for="browser"></label>
|
||||
<input list="browsers" name="browser" id="browser">
|
||||
<datalist id="browsers">
|
||||
<option value="Edge">
|
||||
<option value="Firefox">
|
||||
<option value="Chrome">
|
||||
<option value="Opera">
|
||||
<option value="Safari">
|
||||
</datalist>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="btn-control">
|
||||
<label id="radio">How many number of times a day do you check Facebook?</label><br>
|
||||
<input type="radio" name="Times ">0 times<br>
|
||||
<input type="radio" name="Times ">1-2 times<br>
|
||||
<input type="radio" name="Times ">3-4 times<br>
|
||||
<input type="radio" name="Times ">5 times or more<br>
|
||||
</div>
|
||||
|
||||
<div class="btn-control">
|
||||
<label id="checkbox;">What does Facebook do better than its competitors?</label><br>
|
||||
<input type="checkbox" value="">Recommending Friends</input><br>
|
||||
<input type="checkbox" value="">User Feed</input><br>
|
||||
<input type="checkbox" value="">Advertisements</input><br>
|
||||
<input type="checkbox" value="">Usability</input><br>
|
||||
<input type="checkbox" value="">Nothing</input>
|
||||
</div>
|
||||
|
||||
<div class="btn-control">
|
||||
<label id="radio">What do you use Facebook for?</label><br>
|
||||
<input type="radio" name="Times ">Photos<br>
|
||||
<input type="radio" name="Times ">News<br>
|
||||
<input type="radio" name="Times ">Messaging<br>
|
||||
<input type="radio" name="Times ">Games<br>
|
||||
</div>
|
||||
|
||||
<div class="btn-control">
|
||||
<label id="radio">How did you learn about Facebook?</label><br>
|
||||
<input type="text" placeholder="Enter the name of your source" size="37">
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<div class="texto">
|
||||
<p style="font-size:120%;">Please enter your comments here:
|
||||
<p>
|
||||
<textarea rows="10" cols="100" maxlength="3000" placeholder="Enter your text...."></textarea>
|
||||
</div>
|
||||
<button type="submit" class="button">Submit</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
<p>Website created by Ruchira, Sam, Batuhan, and Kene</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
482
package-lock.json
generated
Normal file
482
package-lock.json
generated
Normal file
|
@ -0,0 +1,482 @@
|
|||
{
|
||||
"name": "colorsurvey",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"accepts": {
|
||||
"version": "1.3.7",
|
||||
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
|
||||
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
|
||||
"requires": {
|
||||
"mime-types": "~2.1.24",
|
||||
"negotiator": "0.6.2"
|
||||
}
|
||||
},
|
||||
"ansi-styles": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
||||
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
||||
"requires": {
|
||||
"color-convert": "^1.9.0"
|
||||
}
|
||||
},
|
||||
"array-flatten": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
||||
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
|
||||
},
|
||||
"async": {
|
||||
"version": "0.9.2",
|
||||
"resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
|
||||
"integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0="
|
||||
},
|
||||
"balanced-match": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
|
||||
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
|
||||
},
|
||||
"body-parser": {
|
||||
"version": "1.19.0",
|
||||
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
|
||||
"integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
|
||||
"requires": {
|
||||
"bytes": "3.1.0",
|
||||
"content-type": "~1.0.4",
|
||||
"debug": "2.6.9",
|
||||
"depd": "~1.1.2",
|
||||
"http-errors": "1.7.2",
|
||||
"iconv-lite": "0.4.24",
|
||||
"on-finished": "~2.3.0",
|
||||
"qs": "6.7.0",
|
||||
"raw-body": "2.4.0",
|
||||
"type-is": "~1.6.17"
|
||||
}
|
||||
},
|
||||
"brace-expansion": {
|
||||
"version": "1.1.11",
|
||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
||||
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
||||
"requires": {
|
||||
"balanced-match": "^1.0.0",
|
||||
"concat-map": "0.0.1"
|
||||
}
|
||||
},
|
||||
"bytes": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
|
||||
"integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
|
||||
},
|
||||
"chalk": {
|
||||
"version": "2.4.2",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
||||
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
||||
"requires": {
|
||||
"ansi-styles": "^3.2.1",
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"supports-color": "^5.3.0"
|
||||
}
|
||||
},
|
||||
"color-convert": {
|
||||
"version": "1.9.3",
|
||||
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
||||
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
||||
"requires": {
|
||||
"color-name": "1.1.3"
|
||||
}
|
||||
},
|
||||
"color-name": {
|
||||
"version": "1.1.3",
|
||||
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
||||
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
||||
},
|
||||
"concat-map": {
|
||||
"version": "0.0.1",
|
||||
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
||||
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
|
||||
},
|
||||
"content-disposition": {
|
||||
"version": "0.5.3",
|
||||
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
||||
"integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
|
||||
"requires": {
|
||||
"safe-buffer": "5.1.2"
|
||||
}
|
||||
},
|
||||
"content-type": {
|
||||
"version": "1.0.4",
|
||||
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
|
||||
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
|
||||
},
|
||||
"cookie": {
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
|
||||
"integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="
|
||||
},
|
||||
"cookie-signature": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
||||
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
|
||||
},
|
||||
"debug": {
|
||||
"version": "2.6.9",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
||||
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
||||
"requires": {
|
||||
"ms": "2.0.0"
|
||||
}
|
||||
},
|
||||
"depd": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
|
||||
"integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
|
||||
},
|
||||
"destroy": {
|
||||
"version": "1.0.4",
|
||||
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
|
||||
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
|
||||
},
|
||||
"ee-first": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
||||
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
|
||||
},
|
||||
"ejs": {
|
||||
"version": "3.1.3",
|
||||
"resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.3.tgz",
|
||||
"integrity": "sha512-wmtrUGyfSC23GC/B1SMv2ogAUgbQEtDmTIhfqielrG5ExIM9TP4UoYdi90jLF1aTcsWCJNEO0UrgKzP0y3nTSg==",
|
||||
"requires": {
|
||||
"jake": "^10.6.1"
|
||||
}
|
||||
},
|
||||
"encodeurl": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
||||
"integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
|
||||
},
|
||||
"escape-html": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
||||
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
|
||||
},
|
||||
"escape-string-regexp": {
|
||||
"version": "1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
||||
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
||||
},
|
||||
"etag": {
|
||||
"version": "1.8.1",
|
||||
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
||||
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
|
||||
},
|
||||
"express": {
|
||||
"version": "4.17.1",
|
||||
"resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
|
||||
"integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
|
||||
"requires": {
|
||||
"accepts": "~1.3.7",
|
||||
"array-flatten": "1.1.1",
|
||||
"body-parser": "1.19.0",
|
||||
"content-disposition": "0.5.3",
|
||||
"content-type": "~1.0.4",
|
||||
"cookie": "0.4.0",
|
||||
"cookie-signature": "1.0.6",
|
||||
"debug": "2.6.9",
|
||||
"depd": "~1.1.2",
|
||||
"encodeurl": "~1.0.2",
|
||||
"escape-html": "~1.0.3",
|
||||
"etag": "~1.8.1",
|
||||
"finalhandler": "~1.1.2",
|
||||
"fresh": "0.5.2",
|
||||
"merge-descriptors": "1.0.1",
|
||||
"methods": "~1.1.2",
|
||||
"on-finished": "~2.3.0",
|
||||
"parseurl": "~1.3.3",
|
||||
"path-to-regexp": "0.1.7",
|
||||
"proxy-addr": "~2.0.5",
|
||||
"qs": "6.7.0",
|
||||
"range-parser": "~1.2.1",
|
||||
"safe-buffer": "5.1.2",
|
||||
"send": "0.17.1",
|
||||
"serve-static": "1.14.1",
|
||||
"setprototypeof": "1.1.1",
|
||||
"statuses": "~1.5.0",
|
||||
"type-is": "~1.6.18",
|
||||
"utils-merge": "1.0.1",
|
||||
"vary": "~1.1.2"
|
||||
}
|
||||
},
|
||||
"filelist": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.1.tgz",
|
||||
"integrity": "sha512-8zSK6Nu0DQIC08mUC46sWGXi+q3GGpKydAG36k+JDba6VRpkevvOWUW5a/PhShij4+vHT9M+ghgG7eM+a9JDUQ==",
|
||||
"requires": {
|
||||
"minimatch": "^3.0.4"
|
||||
}
|
||||
},
|
||||
"finalhandler": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
|
||||
"integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
|
||||
"requires": {
|
||||
"debug": "2.6.9",
|
||||
"encodeurl": "~1.0.2",
|
||||
"escape-html": "~1.0.3",
|
||||
"on-finished": "~2.3.0",
|
||||
"parseurl": "~1.3.3",
|
||||
"statuses": "~1.5.0",
|
||||
"unpipe": "~1.0.0"
|
||||
}
|
||||
},
|
||||
"forwarded": {
|
||||
"version": "0.1.2",
|
||||
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
|
||||
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
|
||||
},
|
||||
"fresh": {
|
||||
"version": "0.5.2",
|
||||
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
||||
"integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
|
||||
},
|
||||
"has-flag": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
||||
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
|
||||
},
|
||||
"http-errors": {
|
||||
"version": "1.7.2",
|
||||
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
|
||||
"integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
|
||||
"requires": {
|
||||
"depd": "~1.1.2",
|
||||
"inherits": "2.0.3",
|
||||
"setprototypeof": "1.1.1",
|
||||
"statuses": ">= 1.5.0 < 2",
|
||||
"toidentifier": "1.0.0"
|
||||
}
|
||||
},
|
||||
"iconv-lite": {
|
||||
"version": "0.4.24",
|
||||
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
||||
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
||||
"requires": {
|
||||
"safer-buffer": ">= 2.1.2 < 3"
|
||||
}
|
||||
},
|
||||
"inherits": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
||||
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
||||
},
|
||||
"ipaddr.js": {
|
||||
"version": "1.9.1",
|
||||
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
||||
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
|
||||
},
|
||||
"jake": {
|
||||
"version": "10.8.2",
|
||||
"resolved": "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz",
|
||||
"integrity": "sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==",
|
||||
"requires": {
|
||||
"async": "0.9.x",
|
||||
"chalk": "^2.4.2",
|
||||
"filelist": "^1.0.1",
|
||||
"minimatch": "^3.0.4"
|
||||
}
|
||||
},
|
||||
"media-typer": {
|
||||
"version": "0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
||||
"integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g="
|
||||
},
|
||||
"merge-descriptors": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
|
||||
"integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
|
||||
},
|
||||
"methods": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
||||
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
|
||||
},
|
||||
"mime": {
|
||||
"version": "1.6.0",
|
||||
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
||||
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
|
||||
},
|
||||
"mime-db": {
|
||||
"version": "1.44.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
|
||||
"integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="
|
||||
},
|
||||
"mime-types": {
|
||||
"version": "2.1.27",
|
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
|
||||
"integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
|
||||
"requires": {
|
||||
"mime-db": "1.44.0"
|
||||
}
|
||||
},
|
||||
"minimatch": {
|
||||
"version": "3.0.4",
|
||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
||||
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
||||
"requires": {
|
||||
"brace-expansion": "^1.1.7"
|
||||
}
|
||||
},
|
||||
"ms": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
||||
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
||||
},
|
||||
"negotiator": {
|
||||
"version": "0.6.2",
|
||||
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz",
|
||||
"integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="
|
||||
},
|
||||
"on-finished": {
|
||||
"version": "2.3.0",
|
||||
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
|
||||
"integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
|
||||
"requires": {
|
||||
"ee-first": "1.1.1"
|
||||
}
|
||||
},
|
||||
"parseurl": {
|
||||
"version": "1.3.3",
|
||||
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
||||
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
|
||||
},
|
||||
"path-to-regexp": {
|
||||
"version": "0.1.7",
|
||||
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
|
||||
"integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
|
||||
},
|
||||
"proxy-addr": {
|
||||
"version": "2.0.6",
|
||||
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz",
|
||||
"integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==",
|
||||
"requires": {
|
||||
"forwarded": "~0.1.2",
|
||||
"ipaddr.js": "1.9.1"
|
||||
}
|
||||
},
|
||||
"qs": {
|
||||
"version": "6.7.0",
|
||||
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
|
||||
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
|
||||
},
|
||||
"range-parser": {
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
||||
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
|
||||
},
|
||||
"raw-body": {
|
||||
"version": "2.4.0",
|
||||
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz",
|
||||
"integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==",
|
||||
"requires": {
|
||||
"bytes": "3.1.0",
|
||||
"http-errors": "1.7.2",
|
||||
"iconv-lite": "0.4.24",
|
||||
"unpipe": "1.0.0"
|
||||
}
|
||||
},
|
||||
"safe-buffer": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
||||
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
||||
},
|
||||
"safer-buffer": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||
},
|
||||
"send": {
|
||||
"version": "0.17.1",
|
||||
"resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz",
|
||||
"integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==",
|
||||
"requires": {
|
||||
"debug": "2.6.9",
|
||||
"depd": "~1.1.2",
|
||||
"destroy": "~1.0.4",
|
||||
"encodeurl": "~1.0.2",
|
||||
"escape-html": "~1.0.3",
|
||||
"etag": "~1.8.1",
|
||||
"fresh": "0.5.2",
|
||||
"http-errors": "~1.7.2",
|
||||
"mime": "1.6.0",
|
||||
"ms": "2.1.1",
|
||||
"on-finished": "~2.3.0",
|
||||
"range-parser": "~1.2.1",
|
||||
"statuses": "~1.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"ms": {
|
||||
"version": "2.1.1",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
|
||||
"integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"serve-static": {
|
||||
"version": "1.14.1",
|
||||
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz",
|
||||
"integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==",
|
||||
"requires": {
|
||||
"encodeurl": "~1.0.2",
|
||||
"escape-html": "~1.0.3",
|
||||
"parseurl": "~1.3.3",
|
||||
"send": "0.17.1"
|
||||
}
|
||||
},
|
||||
"setprototypeof": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz",
|
||||
"integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="
|
||||
},
|
||||
"statuses": {
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
|
||||
"integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
|
||||
},
|
||||
"supports-color": {
|
||||
"version": "5.5.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
||||
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
||||
"requires": {
|
||||
"has-flag": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"toidentifier": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz",
|
||||
"integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="
|
||||
},
|
||||
"type-is": {
|
||||
"version": "1.6.18",
|
||||
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
||||
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
||||
"requires": {
|
||||
"media-typer": "0.3.0",
|
||||
"mime-types": "~2.1.24"
|
||||
}
|
||||
},
|
||||
"unpipe": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
||||
"integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
|
||||
},
|
||||
"utils-merge": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
||||
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
|
||||
},
|
||||
"vary": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
||||
"integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
|
||||
}
|
||||
}
|
||||
}
|
16
package.json
Normal file
16
package.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"name": "colorsurvey",
|
||||
"version": "1.0.0",
|
||||
"description": "A survey on color preference",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Caroline Barrière",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"body-parser": "^1.19.0",
|
||||
"ejs": "^3.1.3",
|
||||
"express": "^4.17.1"
|
||||
}
|
||||
}
|
23
public/assets/action.js
Normal file
23
public/assets/action.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
// jQuery that will "listen" to the html niceSurvey.html
|
||||
$(document).ready(function(){
|
||||
|
||||
$('form').on('submit', function(){
|
||||
|
||||
// var item = $('form input');
|
||||
// console.log(item.serializeArray());
|
||||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/niceSurvey',
|
||||
data: $(this).serializeArray(),
|
||||
success: function(data){
|
||||
// do something with the data via front-end framework
|
||||
// Make the submit button red, disabled and saying Thank you
|
||||
$("#bb").css("background-color", "red");
|
||||
$("#bb").prop("disabled", "true");
|
||||
$("#bb").text("Thank you!");
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
});
|
95
styles.css
Normal file
95
styles.css
Normal file
|
@ -0,0 +1,95 @@
|
|||
body {
|
||||
background-color: #66BFBF;
|
||||
text-align: center;
|
||||
background-image: url("images/bg3.jpg");
|
||||
|
||||
}
|
||||
|
||||
h1{
|
||||
font-family: "Helvetica ", sans-serif;
|
||||
font-size: 40px;
|
||||
color: rgb(45, 43, 170);
|
||||
|
||||
|
||||
}
|
||||
|
||||
.browser{
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.texto{
|
||||
padding-left: 35px;
|
||||
}
|
||||
|
||||
.survey_body{
|
||||
background-color: #ffffff;
|
||||
margin: 20px;
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.form-control{
|
||||
padding-right: 43%;
|
||||
text-align: right;
|
||||
margin: 10px 0px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
|
||||
.texto{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.two{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.box{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.btn-control{
|
||||
padding-bottom: 20px;
|
||||
padding-left: 41%;
|
||||
text-align: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.questions{
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.fb{
|
||||
width: 10%;
|
||||
height:auto;
|
||||
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
background-color: rgb(87, 139, 216);
|
||||
color: rgb(255, 255, 255);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.button {
|
||||
background-color: rgb(87, 139, 216);
|
||||
border-color: transparent;
|
||||
color: #ffffff;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
background-color: rgb(103, 163, 253);
|
||||
color: #ffffff;
|
||||
border-color: transparent;
|
||||
}
|
82
surveyController.js
Normal file
82
surveyController.js
Normal file
|
@ -0,0 +1,82 @@
|
|||
// required packages
|
||||
var bodyParser = require('body-parser');
|
||||
var urlencodedParser = bodyParser.urlencoded({extended: false});
|
||||
var fs = require('fs');
|
||||
|
||||
// read the data file
|
||||
function readData(fileName){
|
||||
let dataRead = fs.readFileSync('./data/' + fileName + '.json');
|
||||
let infoRead = JSON.parse(dataRead);
|
||||
return infoRead;
|
||||
}
|
||||
|
||||
// read the data file
|
||||
function writeData(info, fileName){
|
||||
data = JSON.stringify(info);
|
||||
fs.writeFileSync('./data/' + fileName + '.json', data);
|
||||
}
|
||||
|
||||
// update the data file, I use "name" to be equal to fruit, or animal or color
|
||||
// to match with the file names
|
||||
// I assume we always just add 1 to a single item
|
||||
function combineCounts(name, value){
|
||||
// console.log(value);
|
||||
info = readData(name);
|
||||
// will be useful for text entry, since the item typed in might not be in the list
|
||||
var found = 0;
|
||||
for (var i=0; i<info.length; i++){
|
||||
if (info[i][name] === value){
|
||||
info[i].count = parseInt(info[i].count) + 1;
|
||||
found = 1;
|
||||
}
|
||||
}
|
||||
if (found === 0){
|
||||
info.push({[name] : value, count: 1});
|
||||
}
|
||||
writeData(info, name);
|
||||
}
|
||||
|
||||
// This is the controler per se, with the get/post
|
||||
module.exports = function(app){
|
||||
|
||||
// when a user goes to localhost:3000/analysis
|
||||
// serve a template (ejs file) which will include the data from the data files
|
||||
app.get('/analysis', function(req, res){
|
||||
var color = readData("color");
|
||||
var fruit = readData("fruit");
|
||||
var animal = readData("animal");
|
||||
res.render('showResults', {results: [color, fruit, animal]});
|
||||
console.log([color, fruit, animal]);
|
||||
});
|
||||
|
||||
// when a user goes to localhost:3000/niceSurvey
|
||||
// serve a static html (the survey itself to fill in)
|
||||
app.get('/niceSurvey', function(req, res){
|
||||
res.sendFile(__dirname+'/views/niceSurvey.html');
|
||||
});
|
||||
|
||||
// when a user types SUBMIT in localhost:3000/niceSurvey
|
||||
// the action.js code will POST, and what is sent in the POST
|
||||
// will be recuperated here, parsed and used to update the data files
|
||||
app.post('/niceSurvey', urlencodedParser, function(req, res){
|
||||
console.log(req.body);
|
||||
var json = req.body;
|
||||
for (var key in json){
|
||||
console.log(key + ": " + json[key]);
|
||||
// in the case of checkboxes, the user might check more than one
|
||||
if ((key === "color") && (json[key].length === 2)){
|
||||
for (var item in json[key]){
|
||||
combineCounts(key, json[key][item]);
|
||||
}
|
||||
}
|
||||
else {
|
||||
combineCounts(key, json[key]);
|
||||
}
|
||||
}
|
||||
// mystery line... (if I take it out, the SUBMIT button does change)
|
||||
// if anyone can figure this out, let me know!
|
||||
res.sendFile(__dirname + "/views/niceSurvey.html");
|
||||
});
|
||||
|
||||
|
||||
};
|
46
views/niceSurvey.html
Normal file
46
views/niceSurvey.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Questionnaire</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Style sheet (CSS) and JavaScript scripts necessary to use Bootstrap -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-1.12.4.js"></script> -->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container-md p-3 my-3 border bg-dark text-white" id="survey">
|
||||
<h1>Survey</h1>
|
||||
<form>
|
||||
<h2> What fruits(s) do you like? </h2>
|
||||
I like:<br>
|
||||
<input type="text" name="fruit" placeholder="fruit name..." required />
|
||||
<br>
|
||||
<br>
|
||||
<h2> What color(s) do you like? </h2>
|
||||
I like:<br>
|
||||
<input type="checkbox" name="color" value="Red"> Red<br>
|
||||
<input type="checkbox" name="color" value="Green"> Green<br>
|
||||
<input type="checkbox" name="color" value="Blue"> Blue<br>
|
||||
<br>
|
||||
<h2>What is your favorite animal?</h2>
|
||||
I like:<br>
|
||||
<select name="animal">
|
||||
<option value="Cat" selected="selected">Cat</option>
|
||||
<option value="Dog">Dog</option>
|
||||
<option value="Turtle">Turtle</option>
|
||||
</select>
|
||||
<br>
|
||||
<br>
|
||||
<button type="submit" class="btn btn-warning" id="bb">Submit</button>
|
||||
<p id="thanks"></p>
|
||||
</form>
|
||||
</div>
|
||||
<script src="/assets/action.js"></script>
|
||||
</body>
|
||||
</html>
|
27
views/showResults.ejs
Normal file
27
views/showResults.ejs
Normal file
|
@ -0,0 +1,27 @@
|
|||
<html lang="en-US">
|
||||
<head>
|
||||
<title>Survey Analysis</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Survey analysis</h1>
|
||||
<h2>Colors</h2>
|
||||
<ul>
|
||||
<% for (var i=0; i<results[0].length; i++){ %>
|
||||
<li><%= results[0][i].color %> : <%= results[0][i].count %></li>
|
||||
<% } %>
|
||||
</ul>
|
||||
<h2>Fruits</h2>
|
||||
<ul>
|
||||
<% for (var i=0; i<results[1].length; i++){ %>
|
||||
<li><%= results[1][i].fruit %> : <%= results[1][i].count %></li>
|
||||
<% } %>
|
||||
</ul>
|
||||
<h2>Animals</h2>
|
||||
<ul>
|
||||
<% for (var i=0; i<results[2].length; i++){ %>
|
||||
<li><%= results[2][i].animal %> : <%= results[2][i].count %></li>
|
||||
<% } %>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue