config_panel.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. {{? cx-newsletter control panel }}
  11. </span>
  12. </div>
  13. <div class="separator"></div>
  14. <div class="group">
  15. <label>
  16. {{? Setup E-Mail address from which mails would being send }}
  17. </label>
  18. <input
  19. type="email"
  20. name="source_address"
  21. placeholder="[email protected]"
  22. value="{{$ source_address }}"
  23. >
  24. </div>
  25. <div class="group">
  26. <label>
  27. {{? Setup E-Mail address where users would to reply }}
  28. </label>
  29. <input
  30. type="email"
  31. name="reply_to_address"
  32. placeholder="[email protected]"
  33. value="{{$ reply_to_address }}"
  34. >
  35. </div>
  36. <div class="group">
  37. <label>
  38. {{? How many E-Mails would be send in one transaction }}
  39. </label>
  40. <input
  41. type="number"
  42. name="email_count"
  43. placeholder="50"
  44. value="{{$ email_count }}"
  45. >
  46. </div>
  47. <div class="group">
  48. <label>
  49. {{? How many SMS-es would be send in one transaction }}
  50. </label>
  51. <input
  52. type="number"
  53. name="sms_count"
  54. placeholder="10"
  55. value="{{$ sms_count }}"
  56. >
  57. </div>
  58. <div class="group">
  59. <label>
  60. {{? Which Api Key should be used to access by the SMS gate }}
  61. </label>
  62. <input
  63. type="text"
  64. name="apikey"
  65. placeholder="TEST_APIKEY_TEST_APIKEY"
  66. value="{{$ apikey }}"
  67. >
  68. </div>
  69. <div class="group center">
  70. <input
  71. type="submit"
  72. name="save"
  73. value="{{? Save }}"
  74. >
  75. </div>
  76. </div>
  77. </form>
  78. </div>