helper.js 820 B

123456789101112131415161718192021222324252627
  1. module.exports = {
  2. error: function(message){
  3. return `
  4. <div id="bannerContainer">
  5. <div id="errorBanner">
  6. <style>
  7. #bannerContainer{
  8. display: flex;
  9. justify-content: center;
  10. width: 100vw;
  11. }
  12. #errorBanner{
  13. position: fixed;
  14. top: 10px;
  15. background: red;
  16. color: white;
  17. width: 50%;
  18. }
  19. </style>
  20. <h2>${message}</h2>
  21. </div>
  22. </div>
  23. `;
  24. }
  25. }