HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/appointmentbook.me/wp-content/plugins/booknetic/app/Backend/Base/view/install.php
<?php

defined( 'ABSPATH' ) or die();

use BookneticApp\Providers\Helpers\Helper;
use BookneticApp\Providers\Helpers\Date;

/**
 * @var array $options
*/

?>

<div id="booknetic_loading" class="hidden"><div><?php echo bkntc__('Installing...')?></div><div><?php echo bkntc__('( it can take some time, please wait... )')?></div></div>

<div id="booknetic_alert" class="hidden"></div>

<div class="booknetic_area">
	<div class="booknetic_install_panel">
		<?php
		if( isset( $hasError ) && !empty( $hasError ) )
		{
			echo '<div class="booknetic_has_error">' . $hasError . '</div>';
		}
		?>

		<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('booknetic_install')?>">
		<div class="booknetic_logo_d"><img src="<?php echo Helper::assets('images/logo-black.svg')?>" alt=""></div>
		<div class="booknetic_input_d"><label for="booknetic_install_purchase_code"></label><input type="text" placeholder="<?php echo bkntc__('Purchase code')?>" name="purchase_code" id="booknetic_install_purchase_code"></div>
        <div class="booknetic_input_d">
            <label for="booknetic_install_email"></label><input type="text" placeholder="<?php echo bkntc__('Email')?>" name="email" id="booknetic_install_email">
        </div>
		<div class="booknetic_input_d">
            <label for="booknetic_install_found_from"></label><select type="text" name="where_find" id="booknetic_install_found_from">
				<option disabled selected><?php echo bkntc__('Where did You find us?')?></option>
				<?php
				foreach ( $options AS $value => $option )
				{
					echo '<option value="' . htmlspecialchars($value) . '">' . htmlspecialchars($option) . '</option>';
				}
				?>
			</select>
		</div>
        <div>
            <div class="booknetic_input_d" style="max-width: 320px;">
                <input type="checkbox" id="booknetic_install_subscribed_to_newsletter">&emsp;<label for="booknetic_install_subscribed_to_newsletter">Stay connected for exciting features, updates, and limited-time offers!</label>
            </div>
            <div class="booknetic_input_d" style="max-width: 320px;">
                <input type="checkbox" id="booknetic_install_staging_website">&emsp;<label for="booknetic_install_staging_website">Is this a staging website?</label>
            </div>
        </div>
		<div class="booknetic_submit_d"><button type="button" id="booknetic_install_btn"><?php echo bkntc__('INSTALL')?></button></div>
		<div class="booknetic_help_text"><?php echo bkntc__('Install process can take 30-60 sec., please wait...')?></div>
	</div>
</div>