Contact Forms

If you haven’t installed our demo content but want to add a contact form to your website, we recommend using the popular Contact Form 7 plugin.

This plugin is included as a recommended plugin with our theme. Once you install and activate it, a basic contact form will be automatically created. You can place it on your page using Elementor.

Alternatively, you can create a custom form by navigating to:
Dashboard → Contact → Add New

For detailed instructions, refer to the Contact Form 7 Documentation.

Brito Theme Contact Forms Code:

<div class="contact-form">
    <h3>Message Us</h3>
    <div class="row">
        <div class="col-lg-6">
            <div class="form-group">
                <label class="label">First Name <span>*</span></label>
                [text* your-fname class:form-control]
            </div>
        </div>
        <div class="col-lg-6">
            <div class="form-group">
                <label class="label">Last Name <span>*</span></label>
                [text* your-lname class:form-control]
            </div>
        </div>
        <div class="col-lg-6">
            <div class="form-group">
                <label class="label">Email <span>*</span></label>
                [email* your-email class:form-control]
            </div>
        </div>
        <div class="col-lg-6">
            <div class="form-group">
                <label class="label">Phone <span>*</span></label>
                [number* your-number class:form-control]
            </div>
        </div>
        <div class="col-lg-12">
            <div class="form-group">
                <label class="label">Your Comments Here</label>
                [textarea your-message class:form-control rows:6 cols:30]
            </div>
        </div>
        <div class="col-lg-12">
            <div class="form-group">
                <button class="btn two" type="submit">
                    <span>Send Message</span><i class="ti ti-send"></i>
                </button>
            </div>
        </div>
    </div>
</div>

Brito Single Page Form

<div class="form-filter">
        <div class="form-group">
            <label class="label">First Name <span>*</span></label>
            [text* your-fname class:form-control]
        </div>
        <div class="form-group">
            <label class="label">Last Name <span>*</span></label>
            [text* your-lname class:form-control]
        </div>
        <div class="form-group">
            <label class="label">Email <span>*</span></label>
            [email* your-email class:form-control]
        </div>
        <div class="form-group">
            <label class="label">Phone <span>*</span></label>
            [number* your-number class:form-control]
        </div>
        <div class="form-group">
            <label class="label">Resume CV <span>*</span></label>
            [file attach-file limit:8000000 filetypes:pdf|image|doc class:custom-file-label class:form-control class:h-100]
        </div>
        <div class="form-group">
            <label class="label">Linkedin Profile <span>*</span></label>
            [text* your-lpro class:form-control]
        </div>
        <div class="form-group">
            <label class="label">Website</label>
            [text* your-webs class:form-control]
        </div>
        <div class="form-group mb-0">
            <button type="submit" class="btn w-100">
                <span>Submit Application</span>
                <i class="ti ti-send"></i>
            </button>
        </div>
    </div>