diff --git a/app.js b/app.js new file mode 100644 index 0000000..cc61145 --- /dev/null +++ b/app.js @@ -0,0 +1,38 @@ +(function(){ + // Declare App + var app = angular.module('testApp',[]); + + // Create Controller + app.controller('testController', function($scope){ + + // Data + $scope.title = "Hello, World!"; + $scope.products = [ + { + name: 'Product One', + price: 2, + forSale: true + }, + { + name: 'Product Two', + price: 5, + forSale: false + }, + { + name: 'Product Three', + price: 9, + forSale: true + } + ]; + + // Add Product Functionality + $scope.addProduct = function(){ + $scope.products.push($scope.newProduct); + $scope.newProduct = {}; + }; + + // End Controller + }); + +// End App +})(); \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..1b0ff06 --- /dev/null +++ b/index.html @@ -0,0 +1,188 @@ + + +
+ + + + + + + + +...for teachers to analyse! To use this app, simply set up your exam by entering the question numbers, marks available per question and topics for each question, then input your student data question-by-question, and select an analysis to view from the drop-down menu.
+Performing a gap analysis to ensure progress for every pupil has never been so easy.
++ Get started » +
+Please enter the following fields:
+Paste excel data here:
+Table data will appear below
+Paste excel data here:
+Table data will appear below
+