mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-11 15:56:11 +01:00
update static files
This commit is contained in:
@@ -236,4 +236,4 @@ a:hover {
|
|||||||
|
|
||||||
.btn-min-width {
|
.btn-min-width {
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ app.controller('createWebsite', function ($scope, $http, $timeout, $window) {
|
|||||||
|
|
||||||
$scope.currentStatus = "Starting creation..";
|
$scope.currentStatus = "Starting creation..";
|
||||||
|
|
||||||
var ssl, dkimCheck, openBasedir;
|
var ssl, dkimCheck, openBasedir, mailDomain;
|
||||||
|
|
||||||
if ($scope.sslCheck === true) {
|
if ($scope.sslCheck === true) {
|
||||||
ssl = 1;
|
ssl = 1;
|
||||||
@@ -65,6 +65,13 @@ app.controller('createWebsite', function ($scope, $http, $timeout, $window) {
|
|||||||
openBasedir = 0
|
openBasedir = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($scope.mailDomain === true) {
|
||||||
|
mailDomain = 1;
|
||||||
|
} else {
|
||||||
|
mailDomain = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
url = "/websites/submitWebsiteCreation";
|
url = "/websites/submitWebsiteCreation";
|
||||||
|
|
||||||
var package = $scope.packageForWebsite;
|
var package = $scope.packageForWebsite;
|
||||||
@@ -82,7 +89,8 @@ app.controller('createWebsite', function ($scope, $http, $timeout, $window) {
|
|||||||
ssl: ssl,
|
ssl: ssl,
|
||||||
websiteOwner: websiteOwner,
|
websiteOwner: websiteOwner,
|
||||||
dkimCheck: dkimCheck,
|
dkimCheck: dkimCheck,
|
||||||
openBasedir: openBasedir
|
openBasedir: openBasedir,
|
||||||
|
mailDomain: mailDomain
|
||||||
};
|
};
|
||||||
|
|
||||||
var config = {
|
var config = {
|
||||||
|
|||||||
Reference in New Issue
Block a user