New login screen UI
This commit is contained in:
parent
2d4337ef82
commit
f97b8e2304
24 changed files with 394 additions and 212 deletions
|
@ -35,7 +35,7 @@ angular.module('quay').factory('Features', [function() {
|
|||
/**
|
||||
* Application configuration.
|
||||
*/
|
||||
angular.module('quay').factory('Config', [function() {
|
||||
angular.module('quay').factory('Config', ['Features', function(Features) {
|
||||
if (!window.__config) {
|
||||
return {};
|
||||
}
|
||||
|
@ -71,5 +71,21 @@ angular.module('quay').factory('Config', [function() {
|
|||
return value;
|
||||
};
|
||||
|
||||
config.getEnterpriseLogo = function(forWhiteBackground) {
|
||||
if (!config.ENTERPRISE_LOGO_URL) {
|
||||
if (Features.BILLING) {
|
||||
if (forWhiteBackground) {
|
||||
return '/static/img/quay-horizontal-color.svg';
|
||||
} else {
|
||||
return '/static/img/quay-horizontal-whiteblue-nobackground.svg';
|
||||
}
|
||||
} else {
|
||||
return '/static/img/QuayEnterprise_horizontal_color.svg';
|
||||
}
|
||||
}
|
||||
|
||||
return config.ENTERPRISE_LOGO_URL;
|
||||
};
|
||||
|
||||
return config;
|
||||
}]);
|
Reference in a new issue