Destination e-mail address for bootstrap contact form

I have spent many hours trying to guess how to set up the destination e-mail address for this template:
http://www.999webtemplates.com/spirit8-bootstrap-html-template-free/

Can you please kindly help me?
Please, keep in mind that I am not professional :slight_smile: - I would welcome a step-by-step easy-to-understand instructions.
Very many thanks in advance.
Jan

The form element portion of the HTML is not complete

<form>
    <div class="row">
        <div class="col-md-6">
            <div class="form-group">
                <label for="exampleInputEmail1">Email address</label>
                <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
            </div>
        </div>
        <div class="col-md-6">
            <div class="form-group">
                <label for="exampleInputPassword1">Password</label>
                <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
            </div>
        </div>
    </div>
    <div class="form-group">
        <label for="exampleInputEmail1">Message</label>
        <textarea class="form-control" rows="3"></textarea>
    </div>
    <button type="submit" class="btn tf-btn btn-default">Submit</button>
</form>

Fixing that is a simple edit to only the <form> tag, You just need to add the “action” to point to the file that deals with form submission, and the “method” you want it to be (I recommend it be POST)

If you don’t have anything set up server-side yet, that will be the tricky part, as without proper processing the form might be vulnerable to be being used to send SPAM from your site. Not a good thing.

Hello,
Very many thanks for your help.
I have copied your FORM section to index.html
and uploaded the template to
http://www.lecba-rakoviny-v-zahranici.cz/

Can you please write me what I shall do now? (pls step by step so that I can understand)

Also, what is the purpose of the Password functionality? Do I need it?

Where shall I put the destination email address?
Very many thanks again!
Jan

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.