From 0d1ba01d65cfcc796cca43af7dd41615cb7419ab Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 4 Aug 2015 11:33:17 +0200 Subject: [PATCH] Add initial support view --- webadmin/src/index.html | 5 ++- webadmin/src/js/index.js | 3 ++ webadmin/src/views/support.html | 71 +++++++++++++++++++++++++++++++++ webadmin/src/views/support.js | 5 +++ 4 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 webadmin/src/views/support.html create mode 100644 webadmin/src/views/support.js diff --git a/webadmin/src/index.html b/webadmin/src/index.html index 1103abc23..ab126734e 100644 --- a/webadmin/src/index.html +++ b/webadmin/src/index.html @@ -143,9 +143,10 @@ diff --git a/webadmin/src/js/index.js b/webadmin/src/js/index.js index db3c11f64..5c1511c02 100644 --- a/webadmin/src/js/index.js +++ b/webadmin/src/js/index.js @@ -37,6 +37,9 @@ app.config(['$routeProvider', function ($routeProvider) { }).when('/settings', { controller: 'SettingsController', templateUrl: 'views/settings.html' + }).when('/support', { + controller: 'SupportController', + templateUrl: 'views/support.html' }).when('/upgrade', { controller: 'UpgradeController', templateUrl: 'views/upgrade.html' diff --git a/webadmin/src/views/support.html b/webadmin/src/views/support.html new file mode 100644 index 000000000..963d653db --- /dev/null +++ b/webadmin/src/views/support.html @@ -0,0 +1,71 @@ +
+
+
+

Support

+
+
+ +
+
+
+
+ If you have any questions, please revise our Frequently Asked Questions. We add more answers as we go, if you couldn't find your answers, just let us know using the forms below.
+
+ For any developer related issues, please see our Developer documentation. +
+
+
+
+ +
+ +
+
+
+
+

Feedback

+ We would love to hear any ideas, feature requests and overall feedback from your side. +
+
+
+
+ + +
+
+ + +
+ +
+
+
+
+
+ +
+ +
+
+
+
+

Ticket

+ If you found any issue or bugs, let us know, we will resolve that for you as soon as possible. +
+
+
+
+ + +
+
+ + +
+ +
+
+
+
+
+
\ No newline at end of file diff --git a/webadmin/src/views/support.js b/webadmin/src/views/support.js new file mode 100644 index 000000000..65ecc148d --- /dev/null +++ b/webadmin/src/views/support.js @@ -0,0 +1,5 @@ +'use strict'; + +angular.module('Application').controller('SupportController', ['$scope', '$location', 'Client', function ($scope, $location, Client) { + +}]);