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.

43 lines
2.0 KiB

3 years ago
3 years ago
3 years ago
  1. {%extends "base"%}
  2. {%block title %} Cannabinieri | {{ title[5] }} {%endblock title %}
  3. {%block head%}
  4. {{super()}}
  5. <link rel="stylesheet" type="text/css" href="../css/contact.css" />
  6. {%endblock head%}
  7. {%block content%}
  8. <div class ="container">
  9. <div class="donation_container">
  10. <h2>Unterstützt uns</h2>
  11. <p>Spende an:<br> <span><b>IBAN:</b></span><br>
  12. Gib als <span>Verwendungszweck</span> die <span>Node</span> an die du unterstützen möchtest !<br>
  13. Nodes: <span>Hanf, PermApp, Spinne, Cube, Cyberpreneur, Offgrid </span></p>
  14. </div>
  15. <div class="form_container">
  16. <div class="form_box">
  17. <div class="left">
  18. </div>
  19. <div class="right">
  20. <h2>Kontaktiert Uns</h2>
  21. <form action="/contact/submit" method="post" enctype="multipart/form-data">
  22. <h3 class="title"> Get in touch</h3>
  23. <div class="input-container">
  24. <input type="text" name="name" class="input" placeholder="Name" id="username"/>
  25. </div>
  26. <div class="input-container">
  27. <input type="email" name="email" class="input" placeholder="Meine EMail*"required id="mail"/>
  28. </div>
  29. <div class="input-container">
  30. <input type="tel" name="phone" class="input" placeholder="Telefonnummer (optional)" id="phone"/>
  31. </div>
  32. <div class="input-container">
  33. <input type="subject" name="subject" class="input" placeholder="Betreff" id="subject" />
  34. </div>
  35. <div class="input-container textarea">
  36. <textarea name="message" class="input" placeholder="Nachricht*" id="message" ></textarea>
  37. </div>
  38. <button class="btn" id="sub_btn">Submit</button>
  39. </form>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. {%endblock content%}