diff --git a/login.php b/login.php
index 164801a2..aaaf1c3a 100644
--- a/login.php
+++ b/login.php
@@ -99,10 +99,19 @@ if (isset($_POST['login'])) {
$subject = "$config_app_name new login for $user_name";
$body = "Hi $user_name,
A recent successful login to your $config_app_name account was considered a little unusual. If this was you, you can safely ignore this email!
IP Address: $ip
User Agent: $user_agent
If you did not perform this login, your credentials may be compromised.
Thanks,
ITFlow";
- $mail = sendSingleEmail($config_smtp_host, $config_smtp_username, $config_smtp_password, $config_smtp_encryption, $config_smtp_port,
- $config_mail_from_email, $config_mail_from_name,
- $user_email, $user_name,
- $subject, $body);
+ $mail = sendSingleEmail(
+ $config_smtp_host,
+ $config_smtp_username,
+ $config_smtp_password,
+ $config_smtp_encryption,
+ $config_smtp_port,
+ $config_mail_from_email,
+ $config_mail_from_name,
+ $user_email,
+ $user_name,
+ $subject,
+ $body
+ );
}
@@ -174,10 +183,19 @@ if (isset($_POST['login'])) {
$subject = "Important: $config_app_name failed 2FA login attempt for $user_name";
$body = "Hi $user_name,
A recent login to your $config_app_name account was unsuccessful due to an incorrect 2FA code. If you did not attempt this login, your credentials may be compromised.
Thanks,
ITFlow";
- $mail = sendSingleEmail($config_smtp_host, $config_smtp_username, $config_smtp_password, $config_smtp_encryption, $config_smtp_port,
- $config_mail_from_email, $config_mail_from_name,
- $user_email, $user_name,
- $subject, $body);
+ $mail = sendSingleEmail(
+ $config_smtp_host,
+ $config_smtp_username,
+ $config_smtp_password,
+ $config_smtp_encryption,
+ $config_smtp_port,
+ $config_mail_from_email,
+ $config_mail_from_name,
+ $user_email,
+ $user_name,
+ $subject,
+ $body
+ );
}
// HTML feedback for incorrect 2FA code
diff --git a/portal/login_microsoft.php b/portal/login_microsoft.php
index 894f777d..4ab12928 100644
--- a/portal/login_microsoft.php
+++ b/portal/login_microsoft.php
@@ -60,9 +60,12 @@ if (isset($_POST['code']) && $_POST['state'] == session_id()) {
// Send request via CURL (server side) so user cannot see the client secret
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $token_grant_url);
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS,
- http_build_query($params));
+ curl_setopt($ch, CURLOPT_POST, 1);
+ curl_setopt(
+ $ch,
+ CURLOPT_POSTFIELDS,
+ http_build_query($params)
+ );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
#curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // DEBUG ONLY - WAMP
diff --git a/portal/login_reset.php b/portal/login_reset.php
index 2b179d14..c772df0e 100644
--- a/portal/login_reset.php
+++ b/portal/login_reset.php
@@ -24,7 +24,7 @@ if (!isset($_SESSION)) {
session_start();
}
-$ip = strip_tags(mysqli_real_escape_string($mysqli,getIP()));
+$ip = strip_tags(mysqli_real_escape_string($mysqli, getIP()));
$user_agent = strip_tags(mysqli_real_escape_string($mysqli, $_SERVER['HTTP_USER_AGENT']));
$company_sql = mysqli_query($mysqli, "SELECT company_name FROM companies WHERE company_id = '1'");
@@ -61,10 +61,19 @@ if ($_SERVER['REQUEST_METHOD'] == "POST") {
$subject = "Password reset for $company_name ITFlow Portal";
$body = "Hello, $name
Someone (probably you) has requested a new password for your account on $company_name's ITFlow Client Portal.
Please click here to reset your password.
Alternatively, copy and paste this URL into your browser:
$url
If you didn't request this change, you can safely ignore this email.
~
$company_name
Support Department
$config_mail_from_email";
- $mail = sendSingleEmail($config_smtp_host, $config_smtp_username, $config_smtp_password, $config_smtp_encryption, $config_smtp_port,
- $config_mail_from_email, $config_mail_from_name,
- $email, $name,
- $subject, $body);
+ $mail = sendSingleEmail(
+ $config_smtp_host,
+ $config_smtp_username,
+ $config_smtp_password,
+ $config_smtp_encryption,
+ $config_smtp_port,
+ $config_mail_from_email,
+ $config_mail_from_name,
+ $email,
+ $name,
+ $subject,
+ $body
+ );
// Error handling
if ($mail !== true) {
@@ -112,10 +121,19 @@ if ($_SERVER['REQUEST_METHOD'] == "POST") {
$body = "Hello, $name
Your password for your account on $company_name's ITFlow Client Portal was successfully reset. You should be all set!
If you didn't reset your password, please get in touch ASAP.
~
$company_name
Support Department
$config_mail_from_email";
- $mail = sendSingleEmail($config_smtp_host, $config_smtp_username, $config_smtp_password, $config_smtp_encryption, $config_smtp_port,
- $config_mail_from_email, $config_mail_from_name,
- $email, $name,
- $subject, $body);
+ $mail = sendSingleEmail(
+ $config_smtp_host,
+ $config_smtp_username,
+ $config_smtp_password,
+ $config_smtp_encryption,
+ $config_smtp_port,
+ $config_mail_from_email,
+ $config_mail_from_name,
+ $email,
+ $name,
+ $subject,
+ $body
+ );
// Error handling
if ($mail !== true) {