summaryrefslogtreecommitdiff
path: root/classes/pref/prefs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-06 23:51:48 +0300
committerAndrew Dolgov <[email protected]>2021-03-06 23:51:48 +0300
commitd6fd0d5462ad5338cc60ad211856b3279d430bfb (patch)
treea767261740d92f1258fc0c62365c05d3248b3f62 /classes/pref/prefs.php
parent39c570a9ffdd7648a6c9c34b244d10b45c3933bc (diff)
add some icons, remove some words
Diffstat (limited to 'classes/pref/prefs.php')
-rw-r--r--classes/pref/prefs.php12
1 files changed, 3 insertions, 9 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index ea9e6a967..592bdb705 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -384,7 +384,7 @@ class Pref_Prefs extends Handler_Protected {
}
private function index_auth_app_passwords() {
- print_notice("You can create separate passwords for API clients. Using one is required if you enable OTP.");
+ print_notice("Separate passwords used for API clients. Required if you enable OTP.");
?>
<div id='app_passwords_holder'>
@@ -454,15 +454,9 @@ class Pref_Prefs extends Handler_Protected {
} else {
- print_notice("You will need to generate app passwords for the API clients if you enable OTP.");
+ print "<img src=".($this->_get_otp_qrcode_img()).">";
- if (function_exists("imagecreatefromstring")) {
- print "<h3>" . __("Scan the following code by the Authenticator application or copy the key manually") . "</h3>";
- print "<img src=".($this->_get_otp_qrcode_img()).">";
- } else {
- print_error("PHP GD functions are required to generate QR codes.");
- print "<h3>" . __("Use the following OTP key with a compatible Authenticator application") . "</h3>";
- }
+ print_notice("You will need to generate app passwords for API clients if you enable OTP.");
$otp_secret = UserHelper::get_otp_secret($_SESSION["uid"]);
?>