Contact

{% form 'contact' %}
  {% if form.posted_successfully? %}
    <p>Thanks for contacting us!</p>
  {% endif %}
  
  <label>Name</label>
  <input type="text" name="contact[name]" required>
  
  <label>Email</label>
  <input type="email" name="contact[email]" required>
  
  <label>Message</label>
  <textarea name="contact[body]" required></textarea>
  
  <button type="submit">Send</button>
{% endform %}

Contact form