Re: Editing Password Reset Message
Hi @Lucas001 ,
This is how I got trigger on Forget Password screen on submission:
1- Create a Page Copy as Account/ForgotPassword/PageCopy
2- Set Type as HTML
Here is how I got trigger on click of Submit button:
<script>
$(document).ready(function() {
$('#submit-forgot-password').on("click", function() {
alert("Hi there!");
});
});
</script>
Here is the screenshot:

This is my jQuery how I changed my text on Forget Password screen after send:
$('.form-horizontal div.xrm-attribute-value:last').text('Hi Saud, I am replacer text.');
Here is the result:

Hope this helps.
Thanks,
Saud
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.