invalid_verification_link.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <script type="text/javascript">
  39. function getUrlParameter(name) {
  40. name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');
  41. var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
  42. var results = regex.exec(location.search);
  43. return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
  44. };
  45. window.onload = addDataToForm;
  46. function addDataToForm() {
  47. var username = getUrlParameter("username");
  48. document.getElementById("usernameField").value = username;
  49. var appId = getUrlParameter("appId");
  50. document.getElementById("resendForm").action = '/apps/' + appId + '/resend_verification_email'
  51. }
  52. </script>
  53. <body>
  54. <div class="container">
  55. <h1>Invalid Verification Link</h1>
  56. <form id="resendForm" method="POST" action="/resend_verification_email">
  57. <input id="usernameField" class="form-control" name="username" type="hidden" value="">
  58. <button type="submit" class="btn btn-default">Resend Link</button>
  59. </form>
  60. </div>
  61. </body>
  62. </html>