PluginProbe
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification / 5.1.6
Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification v5.1.6
5.6.2 5.6.3 5.6.1 5.6.0 5.5.0 5.4.0 5.3.2 5.3.1 5.1.6 5.1.5 trunk 2.1.5 2.11 2.12 2.13 2.15 3.0.0 3.0.1 3.0.2 3.0.3 3.0.5 3.0.51 3.0.60 3.0.61 3.0.62 All 38 releases
double-opt-in / templates / optout-form.php

optout-form.php in Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification 5.1.6, at templates/optout-form.php

20 lines 717 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5 /**
6 * @var string $nonce
7 */
8 ?>
9 <div class="f12-cf7-doubleoptin-optout-form">
10 <div class="f12-cf7-doubleoptin-optout-form--inner">
11 <form action="" method="post">
12 <h3 for="optout-email"><?php _e('Opt-Out', 'double-opt-in'); ?></h3>
13 <label><?php _e('E-Mail', 'double-opt-in'); ?></label>
14 <input type="email" id="optout-email" name="email" value=""
15 placeholder="<?php _e('[email protected]', 'double-opt-in'); ?>">
16 <input type="submit" name="optout" value="<?php _e('Submit', 'double-opt-in'); ?>"/>
17 <?php echo $nonce; ?>
18 </form>
19 </div>
20 </div>