invalid_link.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <!-- This page is displayed when someone navigates to a verify email or reset password link
  3. but their security token is wrong. This can either mean the user has clicked on a
  4. stale link (i.e. re-click on a password reset link after resetting their password) or
  5. (rarely) this could be a sign of a malicious user trying to tamper with your app.
  6. -->
  7. <html>
  8. <head>
  9. <title>Invalid Link</title>
  10. <style type='text/css'>
  11. .container {
  12. border-width: 0px;
  13. display: block;
  14. font: inherit;
  15. font-family: 'Helvetica Neue', Helvetica;
  16. font-size: 16px;
  17. height: 30px;
  18. line-height: 16px;
  19. margin: 45px 0px 0px 45px;
  20. padding: 0px 8px 0px 8px;
  21. position: relative;
  22. vertical-align: baseline;
  23. }
  24. h1, h2, h3, h4, h5 {
  25. color: #0067AB;
  26. display: block;
  27. font: inherit;
  28. font-family: 'Open Sans', 'Helvetica Neue', Helvetica;
  29. font-size: 30px;
  30. font-weight: 600;
  31. height: 30px;
  32. line-height: 30px;
  33. margin: 0 0 15px 0;
  34. padding: 0 0 0 0;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="container">
  40. <h1>Invalid Link</h1>
  41. </div>
  42. </body>
  43. </html>