Postfix's Transport Encryption under Control of the User
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 %}