HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/tiny-compress-images/src/views/account-status-create-simple.php
<div class="tiny-account-status" id="tiny-account-status" data-state="missing">
	<div class="update">
		<h4><?php esc_html_e( 'Configure your account', 'tiny-compress-images' ); ?></h4>
		<p class="introduction">
		<?php
			$link = sprintf(
				'<a href="https://tinypng.com/developers" target="_blank">%s</a>',
				esc_html__( 'TinyPNG developer section', 'tiny-compress-images' )
			);

			esc_html_e( 'Enter your API key.', 'tiny-compress-images' );
			echo ' ';

			printf(
				/* translators: %s: link saying TinyPNG developer section */
				esc_html__(
					'If needed you can go to the %s to retrieve it.',
					'tiny-compress-images'
				),
				$link
			);
			?>
		</p>

		<input type="text" id="tinypng_api_key"
			name="tinypng_api_key" size="35" spellcheck="false"
			value="<?php echo esc_attr( $key ); ?>">

		<button class="button button-primary" data-tiny-action="update-key">
		<?php
			esc_html_e( 'Save', 'tiny-compress-images' );
		?>
		</button>

		<p class="message"></p>
	</div>
</div>