Postfix's Transport Encryption under Control of the User
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.

mailaction.html 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% extends "core/base.html" %}
  2. {% load staticfiles %}
  3. {% block title %}PostTLS - Success!{% endblock %}
  4. {% block additional_css %}
  5. <style>
  6. h1 {
  7. margin-top: 20px;
  8. }
  9. #message {
  10. margin-top: 30px;
  11. }
  12. </style>
  13. {% endblock %}
  14. {% block page_content %}
  15. <style>
  16. </style>
  17. <div class="row">
  18. <div class="col-lg-2"></div>
  19. <div class="col-lg-8">
  20. <div style="margin-top: 50px; width: 100%; text-align: center;">
  21. <i class="fa fa-check" style="color: #07ad02; font-size: 50px; text-align: center;"></i>
  22. </div>
  23. <center>
  24. {% if action == "delete" %}
  25. <h1>Email deleted successfully</h1>
  26. <p id="message">Thank you! Your message was successfully deleted.</p>
  27. {% elif action == "redirect" %}
  28. <h1>Email sent unencrypted</h1>
  29. <p id="message">Thank you! Your message was delivered unencrypted.</p>
  30. {% endif %}
  31. </center>
  32. </div>
  33. <div class="col-lg-2"></div>
  34. </div>
  35. {% endblock %}