Advertisement
Guest User

Netlify forms doropesch html

a guest
Sep 9th, 2022
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <div class="my-5">
  2. <form id="contact-form" name="contact" method="POST" data-netlify="true" netlify-honeypot="bot-field">
  3. {% if site.environment == 'production' %}
  4. <div hidden aria-hidden="true">
  5. <label>
  6. Don’t fill this out if you're human:
  7. <input name="bot-field">
  8. </label>
  9. </div>
  10. {% endif %}
  11. <div class="form-floating">
  12. <input class="form-control" name="name" type="text" required>
  13. <label for="name">Nome</label>
  14. </div>
  15. <div class="form-floating">
  16. <input class="form-control" name="email" type="email" required>
  17. <label for="email">Email</label>
  18. </div>
  19. <div class="form-floating">
  20. <input class="form-control" name="subject" type="text" required>
  21. <label for="subject">Oggetto</label>
  22. </div>
  23. <div class="form-floating">
  24. <textarea class="form-control" name="message" style="height: 12rem" required></textarea>
  25. <label for="message">Messaggio</label>
  26. </div>
  27. <div>
  28. <p>Ai sensi e per gli effetti degli articoli 13 e 6 del Regolamento UE 2016/679:</p>
  29. </div>
  30. <div class="form-floating">
  31. <div class="form-check">
  32. <input class="form-check-input" name="gdpr" type="checkbox" value="si" required>
  33. <label class="form-check-label" for="gdpr">
  34. dichiaro di aver preso visione dell’<a href="/politica-sulla-riservatezza/" title="Privacy Policy">informativa</a> per il trattamento dei dati personali e chiedo di essere ricontattato/a per l’espletamento della mia richiesta.
  35. </label>
  36. </div>
  37. </div>
  38. <br>
  39. <div class="text-center mb-3" id="contact-form-result"></div>
  40. <button class="btn btn-primary text-uppercase" type="submit">Invia</button>
  41. </form>
  42. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement