diff --git a/src/js/client.js b/src/js/client.js
index 91f18fe56..9db32842b 100644
--- a/src/js/client.js
+++ b/src/js/client.js
@@ -2206,11 +2206,12 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
});
};
- Client.prototype.registerCloudron = function (email, password, totpToken, signup, callback) {
+ Client.prototype.registerCloudron = function (email, password, totpToken, signup, purpose, callback) {
var data = {
email: email,
password: password,
- signup: signup
+ signup: signup,
+ purpose: purpose
};
if (totpToken) data.totpToken = totpToken;
diff --git a/src/views/appstore.html b/src/views/appstore.html
index 2c7ca948b..30bb94925 100644
--- a/src/views/appstore.html
+++ b/src/views/appstore.html
@@ -225,6 +225,11 @@
+
+
+
+
+