Add Enterprise Landing page
Note: The design comes directparners.
This commit is contained in:
parent
d63ec8c6b0
commit
c6f7dfa102
8 changed files with 566 additions and 0 deletions
|
@ -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')
|
||||
|
||||
|
|
18
static/js/pages/enterprise.js
Normal file
18
static/js/pages/enterprise.js
Normal 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');
|
||||
};
|
||||
}
|
||||
}]);
|
||||
}());
|
Reference in a new issue