server actix for cannabinieri website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
663 B

2 years ago
  1. {% extends "base.html" %}
  2. {% block title %}Contact{%endblock%}
  3. {% block content %}
  4. <div class="contact_container">
  5. <h1>Contact</h1>
  6. <form id="contact_form" action="/contact/mail" method="POST">
  7. <label id="l1"for="input_mail">Email</label>
  8. <input class="form_input"id="input_mail"type="email" name="mail">
  9. <label id="l2" for="input_subject">Subject</label>
  10. <input class="form_input" id="input_subject" type="text" name="subject">
  11. <label id="l3" for="input_message">Question/Comment</label>
  12. <textarea id="input_message" type="text" name="comment"></textarea>
  13. <input id="mail_submit"type="submit" value="Submit">
  14. </form>
  15. </div>
  16. {% endblock %}