Add back in the about and security pages
This commit is contained in:
parent
9bc3167dee
commit
078f9c206f
4 changed files with 19 additions and 3 deletions
|
@ -135,10 +135,10 @@ quayApp.config(['$routeProvider', '$locationProvider', 'pages', function($routeP
|
||||||
.route('/contact/', 'contact')
|
.route('/contact/', 'contact')
|
||||||
|
|
||||||
// About
|
// About
|
||||||
//.route('/about/', 'about')
|
.route('/about/', 'about')
|
||||||
|
|
||||||
// Security
|
// Security
|
||||||
//.route('/security/', 'security')
|
.route('/security/', 'security')
|
||||||
|
|
||||||
// Landing Page
|
// Landing Page
|
||||||
.route('/', 'landing')
|
.route('/', 'landing')
|
||||||
|
|
8
static/js/pages/about.js
Normal file
8
static/js/pages/about.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
(function() {
|
||||||
|
/**
|
||||||
|
* About page.
|
||||||
|
*/
|
||||||
|
angular.module('quayPages').config(['pages', function(pages) {
|
||||||
|
pages.create('about', 'about.html');
|
||||||
|
}]);
|
||||||
|
}())
|
8
static/js/pages/security.js
Normal file
8
static/js/pages/security.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
(function() {
|
||||||
|
/**
|
||||||
|
* Security page.
|
||||||
|
*/
|
||||||
|
angular.module('quayPages').config(['pages', function(pages) {
|
||||||
|
pages.create('security', 'security.html');
|
||||||
|
}]);
|
||||||
|
}())
|
|
@ -10,7 +10,7 @@
|
||||||
Create New Organization
|
Create New Organization
|
||||||
</button>
|
</button>
|
||||||
</a>
|
</a>
|
||||||
<a href="/user/?migrate" data-title="Starts the process to convert this account into an organization" bs-tooltip="tooltip.title" quay-show="Config.AUTHENTICATION_TYPE == 'Database' && !user.anonymous">
|
<a href="/user/?tab=migrate" data-title="Starts the process to convert this account into an organization" bs-tooltip="tooltip.title" quay-show="Config.AUTHENTICATION_TYPE == 'Database' && !user.anonymous">
|
||||||
<button class="btn btn-primary">
|
<button class="btn btn-primary">
|
||||||
<i class="fa fa-caret-square-o-right"></i>
|
<i class="fa fa-caret-square-o-right"></i>
|
||||||
Convert account
|
Convert account
|
||||||
|
|
Reference in a new issue