diff --git a/index.html b/index.html
index dcd9166e..0488d153 100644
--- a/index.html
+++ b/index.html
@@ -38,11 +38,13 @@
diff --git a/partials/tabs/forms.html b/partials/tabs/forms.html
new file mode 100644
index 00000000..6cee7c6c
--- /dev/null
+++ b/partials/tabs/forms.html
@@ -0,0 +1,46 @@
+
+
+
+
+
Open Source Forms
+
+
+
+
+
+
+
+
+
+ Title |
+ Submissions Till |
+
+
+
+
+
+
+ |
+
+ {{ form.expiry_date | date:"medium" }}
+ |
+
+
+
+
+
+ No forms have been uploaded, yet! If you are already a member of organization and a developer,
+ you can share it with us on Community website
+ by logging-in.
+
+
+
+
diff --git a/resources/css/style.css b/resources/css/style.css
index f2395d87..4c51df5c 100644
--- a/resources/css/style.css
+++ b/resources/css/style.css
@@ -1,3 +1,10 @@
+.apply-flex {
+ display: flex;
+ justify-content: center;
+}
+.center-align-text {
+ text-align: center;
+}
.hash_value_dup {
position: 'absolute';
left: '-9999px';
diff --git a/resources/js/app.js b/resources/js/app.js
index af811167..26076588 100644
--- a/resources/js/app.js
+++ b/resources/js/app.js
@@ -55,6 +55,9 @@
when('/faq', {
template: '
'
}).
+ when('/forms', {
+ template: '
'
+ }).
otherwise({
redirectTo: '/projects'
});
@@ -416,4 +419,21 @@
}
}]);
+ app.directive('forms', ['$http', function ($http) {
+ return {
+ restrict: 'E',
+ templateUrl: '/partials/tabs/forms.html',
+ controller: function ($scope, $rootScope) {
+ self = this
+ self.formsList = []
+
+ $http.get('https://webservices.coala.io/osforms')
+ .then(function (forms) {
+ self.formsList = forms.data
+ })
+ },
+ controllerAs: "osforms"
+ }
+ }]);
+
})();