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.

error.html 750B

123456789101112131415161718192021222324252627
  1. {% extends "core/base.html" %}
  2. {% load staticfiles %}
  3. {% block title %}PostTLS - An error occured!{% endblock %}
  4. {% block additional_css %}
  5. {% endblock %}
  6. {% block page_content %}
  7. <div class="row">
  8. <div class="col-lg-2"></div>
  9. <div class="col-lg-8">
  10. <div style="margin-top: 50px; width: 100%; text-align: center;">
  11. <i class="fa fa-exclamation-circle" style="color: #ff0c00; font-size: 100px;"></i>
  12. </div>
  13. <center>
  14. <h1 style="margin-top: 20px;">D'oh!<br>Email does not exist!</h1>
  15. <p style="margin-top: 30px;">An email with id <b>{{ queue_id }}</b> does not exist on the server (anymore).</p>
  16. </center>
  17. </div>
  18. <div class="col-lg-2"></div>
  19. </div>
  20. {% endblock %}