mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-05-29 19:13:56 +02:00
generate 16 digit strong password for email
This commit is contained in:
@@ -110,7 +110,7 @@ app.controller('createEmailAccount', function ($scope, $http) {
|
||||
|
||||
$scope.generatePassword = function () {
|
||||
$scope.generatedPasswordView = false;
|
||||
$scope.emailPassword = randomPassword(12);
|
||||
$scope.emailPassword = randomPassword(16);
|
||||
};
|
||||
|
||||
$scope.usePassword = function () {
|
||||
@@ -465,7 +465,7 @@ app.controller('changeEmailPassword', function ($scope, $http) {
|
||||
|
||||
$scope.generatePassword = function () {
|
||||
$scope.generatedPasswordView = false;
|
||||
$scope.emailPassword = randomPassword(12);
|
||||
$scope.emailPassword = randomPassword(16);
|
||||
};
|
||||
|
||||
$scope.usePassword = function () {
|
||||
@@ -1291,4 +1291,4 @@ app.controller('listEmails', function ($scope, $http) {
|
||||
});
|
||||
|
||||
|
||||
/* Java script code for List Emails Ends here */
|
||||
/* Java script code for List Emails Ends here */
|
||||
|
||||
Reference in New Issue
Block a user