File: //home/madepabj/gamepointpk.com/wp-content/themes/groovy/partials/subscribe-form.php
<?php if( epcl_get_option('subscribe_url') ): ?>
<div class="epcl-subscribe">
<div class="grid-container grid-usmall grid-parent np-mobile textcenter">
<form class="subscribe-form" action="<?php echo esc_url( epcl_get_option('subscribe_url') ); ?>" method="<?php echo esc_attr( epcl_get_option_text('subscribe_method', 'POST') ); ?>" target="_blank">
<?php if( epcl_get_option('subscribe_parameters') && function_exists('epcl_render_subscribe_parameters') ): ?>
<?php epcl_render_subscribe_parameters( epcl_get_option('subscribe_parameters') ); ?>
<?php endif; ?>
<h3 class="title medium subtitle"><?php echo wp_kses_post( epcl_get_option_text('single_subscribe_title', esc_html__('Like what you read?', 'groovy') ) ); ?></h3>
<h4 class="title large"><?php echo wp_kses_post( epcl_get_option_text('subscribe_title', esc_html__('Subscribe to our Newsletter', 'groovy') ) ); ?></h4>
<div class="form-group">
<input type="email" name="<?php echo esc_attr( epcl_get_option_text('subscribe_email_field_name', 'MERGE0') ); ?>" class="inputbox rounded large" required placeholder="<?php esc_attr_e('Enter your email address', 'groovy'); ?>">
<button class="epcl-button submit absolute" type="submit"><?php esc_attr_e('Submit', 'groovy'); ?></button>
</div>
<span class="subscribe-decoration"></span>
<?php wp_nonce_field( 'epcl_subscribe', 'subscribe_nonce' ); ?>
</form>
<p class="description"><?php echo wp_kses_post( epcl_get_option_text('subscribe_description', esc_html__('Subscribe to our email newsletter to get the latest posts delivered right to your email.', 'groovy') ) ); ?></p>
</div>
</div>
<?php endif; ?>