sending_test.html 995 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <style>
  2. {{> styles/all.css }}
  3. </style>
  4. <div class="cx-newsletter-container">
  5. {{$ toast_place }}
  6. <form action="" method="post">
  7. <div class="section">
  8. <div class="group center">
  9. <span class="title">
  10. {{? Sending email test }}
  11. </span>
  12. </div>
  13. <div class="separator"></div>
  14. <div class="group">
  15. <label>
  16. {{? Email where test email would be sended }}
  17. </label>
  18. <input
  19. type="email"
  20. name="target"
  21. placeholder="[email protected]"
  22. value="{{$ target }}"
  23. >
  24. </div>
  25. <div class="group center">
  26. <input
  27. type="submit"
  28. name="test"
  29. value="{{? Test it! }}"
  30. >
  31. </div>
  32. </div>
  33. </form>
  34. </div>