verify_response_page_template_vector_im 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title></title>
  6. <style>
  7. body {
  8. font-family: 'Open Sans', Helvetica, Arial, Sans-Serif;
  9. font-color: #454545;
  10. font-size: 12pt;
  11. margin: 1em;
  12. }
  13. #vectorlogo {
  14. margin: auto;
  15. text-align: center;
  16. padding: 10px;
  17. }
  18. #message {
  19. width: 300px;
  20. text-align: left;
  21. padding: 1em;
  22. margin-bottom: 40px;
  23. margin-left: auto;
  24. margin-right: auto;
  25. margin-top: 50px;
  26. -webkit-border-radius: 10px;
  27. -moz-border-radius: 10px;
  28. border-radius: 10px;
  29. -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  30. -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  31. box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  32. background-color: #f8f8f8;
  33. border: 1px #ccc solid;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div id="vectorlogo">
  39. <img src="//riot.im/app/themes/riot/img/logos/riot-logo.svg" alt="riot.im" width="256" height="256" />
  40. </div>
  41. <div id="message">
  42. <p>%(message)s</p>
  43. </div>
  44. </body>
  45. </html>