diff --git a/src/www/system_usermanager.php b/src/www/system_usermanager.php
index 7884af28bc7..7ed323cab27 100644
--- a/src/www/system_usermanager.php
+++ b/src/www/system_usermanager.php
@@ -935,6 +935,8 @@ class="btn btn-default btn-xs" data-toggle="tooltip" title="=gettext("export c
$otp_url = "otpauth://totp/";
$otp_url .= $pconfig['usernamefld']."@".htmlspecialchars($config['system']['hostname'])."?secret=";
$otp_url .= $pconfig['otp_seed'];
+ $otp_url .= "&issuer=OPNsense";
+ $otp_url .= "&image=https://docs.opnsense.org/_static/favicon.png";
?>
= gettext('OTP QR code') ?> |
diff --git a/src/www/system_usermanager_passwordmg.php b/src/www/system_usermanager_passwordmg.php
index 966595c5fe3..1099976440d 100644
--- a/src/www/system_usermanager_passwordmg.php
+++ b/src/www/system_usermanager_passwordmg.php
@@ -77,6 +77,8 @@
$otp_url = "otpauth://totp/";
$otp_url .= $username."@".htmlspecialchars($config['system']['hostname'])."?secret=";
$otp_url .= $new_seed;
+ $otp_url .= "&issuer=OPNsense";
+ $otp_url .= "&image=https://docs.opnsense.org/_static/favicon.png";
echo json_encode([
"otp_seed" => $new_seed ,
"otp_seed_url" => $otp_url,