link_send_success.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <!-- This page is displayed when someone navigates to a verify email link with an invalid
  3. security token and requests a link resend. This page is displayed when the username
  4. from the original verification link has been found and a new verification link has
  5. been successfully sent to the corresponding stored email
  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>Link Sent! Check your email.</h1>
  41. </div>
  42. </body>
  43. </html>