<?php
/**
 * Displays Contact Form Module Options Page
 * 
 * This file is a template for wp-admin / Classifieds / Options / Contact Form panel. 
 * 
 * It is being loaded by adext_contact_form_page_options function.
 * 
 * @see adext_contact_form_page_options()
 * @since 0.1
 */
?>
<div class="wrap">
    <h2 class="">
        <?php _e("Contact Form", "wpadverts") ?>
    </h2>

    <?php adverts_admin_flash() ?>

    <form action="" method="post" class="adverts-form">
        <?php wpadverts_config_nonce( $form ) ?>
        <table class="form-table">
            <tbody>
            <?php echo adverts_form_layout_config($form) ?>
            </tbody>
        </table>

        <p class="submit">
            <input type="submit" value="<?php echo esc_attr($button_text) ?>" class="button-primary" name="Submit"/>
        </p>

    </form>

</div>
