Cloudron Store
-
Applications can be installed from this screen onto you Cloudron.
-
Each app is installed on its own subdomain.
-
Access control may be applied to each application individually.
+
Install applications by simply giving a subdomain and set per application access control.
-
+
Users and Groups
-
The Cloudron comes with a built-in user and group managment.
-
Most apps are single sign-on integrated.
-
Just use your Cloudron account to log into them.
-
-
-
-
-
That's it!
-
This interface will always be available for you at this domain.
-
You might want to bookmark this page so you can find it later again.
+
The Cloudron comes with a built-in user and group managment, just use your Cloudron account to log into the apps.
diff --git a/webadmin/src/js/main.js b/webadmin/src/js/main.js
index e5733e77c..e3c385980 100644
--- a/webadmin/src/js/main.js
+++ b/webadmin/src/js/main.js
@@ -10,10 +10,8 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
$scope.tutorialStep = -1;
$scope.tutorialSteps = [
{ title: 'intro', page: '#/apps' },
- { title: 'apps', page: '#/apps' },
{ title: 'appstore', page: '#/appstore' },
- { title: 'users', page: '#/users' },
- { title: 'finish', page: '#/apps' }
+ { title: 'users', page: '#/users' }
];
$scope.startTutorial = function () {
@@ -26,6 +24,8 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
Client.setShowTutorial(false, function (error) {
if (error) console.error(error);
+
+ window.location.href = '#/apps';
});
};
diff --git a/webadmin/src/theme.scss b/webadmin/src/theme.scss
index c9e7bf2bb..25c4dad72 100644
--- a/webadmin/src/theme.scss
+++ b/webadmin/src/theme.scss
@@ -1007,7 +1007,7 @@ $graphs-success-alt: lighten(#27CE65, 20%);
position: absolute;
left: 0;
top: 0;
- background-color: rgba(0,0,0,0.5);
+ background-color: rgba(0,0,0,0.3);
z-index: 3000;
width: 100%;
height: 100%;
@@ -1017,16 +1017,19 @@ $graphs-success-alt: lighten(#27CE65, 20%);
position: absolute;
width: 600px;
background-color: white;
- padding: 10px;
+ padding: 15px;
box-shadow: 0 3px 5px rgba(0,0,0,.5);
- left: 50%;
- top: 200px;
- margin-left: -300px;
+ right: 20px;
+ bottom: 80px;
h2 {
margin-bottom: 20px;
margin-top: 0;
}
+
+ p {
+ font-size: 18px;
+ }
}
}