quota.tpl 587 B

1234567891011121314151617181920212223242526272829
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. font-family: sans-serif;
  6. }
  7. #progressbar {
  8. background-color: #f0f0f0;
  9. border-radius: 0px;
  10. padding: 0px;
  11. width:50%;
  12. }
  13. #progressbar > div {
  14. background-color: #ff9c9c;
  15. width: {{percent}}%;
  16. height: 20px;
  17. border-radius: 0px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <p>Hi {{username}}!<br><br>
  23. Your mailbox is now {{percent}}% full, please consider deleting old messages to still be able to receive new mails in the future.<br>
  24. <div id="progressbar">
  25. <div></div>
  26. </div>
  27. </p>
  28. </body>
  29. </html>