password_reset_success.html 804 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <!-- This page is displayed whenever someone has successfully reset their password.
  4. Pro and Enterprise accounts may edit this page and tell Parse to use that custom
  5. version in their Parse app. See the App Settigns page for more information.
  6. This page will be called with the query param 'username'
  7. -->
  8. <head>
  9. <title>Password Reset</title>
  10. <style type='text/css'>
  11. h1 {
  12. color: #0067AB;
  13. display: block;
  14. font: inherit;
  15. font-family: 'Open Sans', 'Helvetica Neue', Helvetica;
  16. font-size: 30px;
  17. font-weight: 600;
  18. height: 30px;
  19. line-height: 30px;
  20. margin: 45px 0px 0px 45px;
  21. padding: 0px 8px 0px 8px;
  22. }
  23. </style>
  24. <body>
  25. <h1>Successfully updated your password!</h1>
  26. </body>
  27. </html>