# html-forms/1.0.4/src/Admin/views/add-form.php

HTML Forms – Simple WordPress Forms Plugin, version 1.0.4. 31 lines.

- Page: https://pluginprobe.com/plugins/html-forms/1.0.4/code/src/Admin/views/add-form.php
- Raw: https://pluginprobe.com/plugins/html-forms/1.0.4/raw/src/Admin/views/add-form.php
- Modified: 2017-10-28T18:49:58+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/html-forms/1.0.4/code/src/Admin/views/add-form.php#L10-L20`.

```php
<?php defined( 'ABSPATH' ) or exit; ?>

<div class="wrap hf">

    <style type="text/css" scoped>
        label{ display: block; font-weight: bold; font-size: 18px; }
    </style>

    <p class="breadcrumbs">
        <span class="prefix"><?php echo __( 'You are here: ', 'html-forms' ); ?></span>
        <a href="<?php echo admin_url( 'admin.php?page=html-forms' ); ?>">HTML Forms</a> &rsaquo;
        <span class="current-crumb"><strong><?php _e( 'Add new form', 'html-forms' ); ?></strong></span>
    </p>

    <h1 class="page-title"><?php _e( 'Add new form', 'html-forms' ); ?></h1>

    <form method="post" style="max-width: 600px;">
        <input type="hidden" name="_hf_admin_action" value="create_form" />

        <p>
            <label>Form title</label>
            <input type="text" name="form[title]" value="" placeholder="<?php esc_attr_e( 'Your form title..', 'html-forms' ); ?>" class="widefat" required />
        </p>

        <?php submit_button(); ?>
    </form>

    <?php require __DIR__ . '/admin-footer.php'; ?>
</div>


```
