Add Enterprise Landing page

Note: The design comes directparners.
This commit is contained in:
Joseph Schorr 2016-04-25 14:16:35 -04:00
parent d63ec8c6b0
commit c6f7dfa102
8 changed files with 566 additions and 0 deletions

View file

@ -163,6 +163,9 @@ quayApp.config(['$routeProvider', '$locationProvider', 'pages', function($routeP
// Confirm Invite
.route('/confirminvite', 'confirm-invite')
// Enterprise marketing page
.route('/enterprise', 'enterprise')
// Experiments
.route('/__exp/newseclayout', 'exp-new-sec-layout')

View file

@ -0,0 +1,18 @@
(function() {
/**
* Enterprise marketing page.
*/
angular.module('quayPages').config(['pages', function(pages) {
pages.create('enterprise', 'enterprise.html', EnterpriseCtrl, {
'title': 'Quay Enterprise',
'description': 'Quay Enterprise'
});
function EnterpriseCtrl($scope, $location, UserService, PlanService, $routeParams) {
$scope.qeStartTrial = function(plan) {
$scope.currentQEPlan = plan;
$('#tectonicManagerDialog').modal('show');
};
}
}]);
}());