Renamed Login In the Frontend UI to Credentials to better fit other types of creds like API Keys, WiFi etc, also renamed the password field to password / key

This commit is contained in:
johnnyq
2024-04-05 15:06:42 -04:00
parent 05d979b3d8
commit 5370a70ab8
10 changed files with 17 additions and 18 deletions

View File

@@ -731,7 +731,7 @@ if (isset($_POST['export_client_pdf'])) {
//Logins Start
<?php if(mysqli_num_rows($sql_logins) > 0 && $export_logins == 1){ ?>
{
text: 'Logins',
text: 'Credentials',
style: 'title'
},

View File

@@ -92,7 +92,7 @@ if (isset($_POST['export_client_logins_csv'])) {
if ($num_rows > 0) {
$delimiter = ",";
$filename = strtoAZaz09($client_name) . "-Logins-" . date('Y-m-d') . ".csv";
$filename = strtoAZaz09($client_name) . "-Credentials-" . date('Y-m-d') . ".csv";
//create a file pointer
$f = fopen('php://memory', 'w');