JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr#!/usr/bin/perl # # Authentic Theme (https://github.com/authentic-theme/authentic-theme) # Copyright Ilia Rostovtsev # Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE) # use strict; our (%in, $theme_webprefix, $current_theme, $config_directory, $get_user_level, %theme_text); do($ENV{'THEME_ROOT'} . "/authentic-lib.pl"); &webmin_user_is_admin() || &error($theme_text{'theme_error_access_not_root_user'}); &ui_print_header(undef, $theme_text{'theme_xhred_settings_right_theme_logos_title'}, undef, undef, undef, 1); my $lga = $config_directory . "/$current_theme/logo.png"; my $lgg = $config_directory . "/$current_theme/logo_welcome.png"; print '' . $theme_text{'settings_right_logos_title'} . '

'; print &ui_form_start("settings-logos_save.cgi", "form-data"); print '
' . $theme_text{'theme_xhred_config_configurable_options'} . '
' . $theme_text{'settings_right_logo_authenticated_users'} . ' ' . ui_yesno_radio("authenticated_logo", (-r $lga ? "1" : "0"), "1", "0") . '
' . $theme_text{'settings_right_logo_unauthenticated_users'} . ' ' . ui_yesno_radio("unauthenticated_logo", (-r $lgg ? "1" : "0"), "1", "0") . '
' . $theme_text{'settings_right_theme_extensions'} . ' ' . $theme_text{'theme_xhred_settings_right_theme_bgs'} . '
'; &ui_print_footer("tconfig.cgi", $theme_text{'right_return_theme_options'});