sidebar-upgrade.php 1.38 KB
<?php
/**
 * Outputs settings screen sidebar for free plugins with a pro version.
 * Display the reasons to upgrade and the mailing list.
 *
 * @package WPZincDashboardWidget
 * @author WP Zinc
 */

/**
 * Settings screen sidebar for free plugins with a pro version. Display the reasons to upgrade
 * and the mailing list.
 */
?>
<!-- Keep Updated -->
<div class="postbox">
	<h3 class="hndle">
		<?php esc_html_e( 'Keep Updated', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
	</h3>

	<div class="wpzinc-option">
		<p class="description">
			<?php esc_html_e( 'Subscribe to the newsletter and receive updates on our WordPress Plugins.', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>
		</p>
	</div>

	<form action="https://n7studios.createsend.com/t/r/s/jdutdyj/" method="post">
		<div class="wpzinc-option">
			<div class="full">                        
				<input id="fieldEmail" name="cm-jdutdyj-jdutdyj" type="email" class="widefat" placeholder="<?php esc_attr_e( 'Your Email Address', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>" class="widefat" required />
			</div>
		</div>
		<div class="wpzinc-option">
			<div class="full"> 
				<input type="submit" name="submit" value="<?php esc_attr_e( 'Subscribe', $this->base->plugin->name ); // phpcs:ignore WordPress.WP.I18n ?>" class="button button-primary" />
			</div>
		</div>
	</form> 
</div>