# double-opt-in/3.0.3/templates/optout-form.php

Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification, version 3.0.3. 17 lines.

- Page: https://pluginprobe.com/plugins/double-opt-in/3.0.3/code/templates/optout-form.php
- Raw: https://pluginprobe.com/plugins/double-opt-in/3.0.3/raw/templates/optout-form.php
- Modified: 2024-08-13T13:52:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/double-opt-in/3.0.3/code/templates/optout-form.php#L10-L20`.

```php
<?php
/**
 * @var string $nonce
 */
?>
<div class="f12-cf7-doubleoptin-optout-form">
    <div class="f12-cf7-doubleoptin-optout-form--inner">
        <form action="" method="post">
            <h3 for="optout-email"><?php _e('Opt-Out', 'double-opt-in'); ?></h3>
            <label><?php _e('E-Mail', 'double-opt-in'); ?></label>
            <input type="email" id="optout-email" name="email" value=""
                   placeholder="<?php _e('max.mustermann@domain.de', 'double-opt-in'); ?>">
            <input type="submit" name="optout" value="<?php _e('Submit', 'double-opt-in'); ?>"/>
            <?php echo $nonce; ?>
        </form>
    </div>
</div>
```
