HEX
Server: nginx/1.17.4
System: Linux hosting 4.9.0-11-amd64 #1 SMP Debian 4.9.189-3 (2019-09-02) x86_64
User: www (1001)
PHP: 7.4.19
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/pulitocucito.it/wp-content/themes/laundry/searchform.php
<?php
$unique_id   = esc_attr( uniqid( 'search-form-' ) );
$laundry_opt = laundry_get_options();
$theme       = isset( $laundry_opt['laundry_demo_select'] ) ? $laundry_opt['laundry_demo_select'] : 1;

if ( $theme == '2' ) {
	?>
	<form class="form-default" role="search" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>">
		<div class="tt-aside-search02">
			<input type="text" id="<?php echo esc_attr( $unique_id ); ?>" class="form-control" value="<?php echo get_search_query(); ?>" name="s" placeholder="<?php esc_attr_e( 'Search text...', 'laundry' ); ?>">
			<button type="submit" class="tt-btn-icon icons-2089805"></button>
		</div>
	</form>
	<?php
} else {
	?>
	<form role="search" method="get" id="searchform" class="search_form widget widget_search input-group" action="<?php echo esc_url( home_url( '/' ) ); ?>" >
		<input type="text" value="<?php echo get_search_query(); ?>" name="s" class="form-control" placeholder="<?php echo esc_attr__( 'Search Here', 'laundry' ); ?>" >
		<span class="input-group-btn">
			<button type="submit" class="btn btn-default btn-xs"><span class="icon-search" aria-hidden="true"></span></button>
		</span>
	</form>
	<?php
}