templates/forms/directory-lead.html.twig line 1

Open in your IDE?
  1. {#directory lead form#}
  2. {# recap key :    6LfJB-QUAAAAAGJEp9y69CBSQRV4EyDC9ePFS2rk   #}
  3. <h1>Listing Contact Form</h1>
  4. <form method="post">
  5.   <div class="">
  6.     <label for="firstname">First Name</label>
  7.     <input class="form-control mb-2" type="text" name="firstname" id="firstname" placeholder="Your First Name" required>
  8.   </div>
  9.   <div class="">
  10.     <label for="lastname">Last Name</label>
  11.     <input class="form-control mb-2" type="text" name="lastname" id="lastname" placeholder="Your Last Name">
  12.   </div>
  13.   <div class="">
  14.     <label for="email">Email Address</label>
  15.     <input class="form-control mb-2" type="text" name="email" id="email" placeholder="Your Email Address">
  16.   </div>
  17.   <div class="">
  18.     <label for="comments">Your Message</label>
  19.     <textarea class="form-control mb-2" type="textarea" name="comments" id="comments" placeholder="Your Message"></textarea>
  20.   </div>
  21.   <div class="form-row g-recaptcha" data-sitekey="6LeEIlMUAAAAAGhdmJJLdJHPxaWx2GqBjber5n6B"></div>
  22.   <button type="submit" class="button">Submit</button>
  23. </form>