Hi everyone,
does somebody know how I can adjust the text at the reset password webpage?
I found the thread already https://powerusers.microsoft.com/t5/Power-Apps-Portals/Edit-forgot-Password-Screen/td-p/1213430
And the content snippet works so far but when submitting the emailadress the content snippet seems not to be loaded so I cannot use JS to further adjust the page.
Unfortunately in german:
Hello everyone,
I finally found a solution with the support.
You need to create a content snippet - Account/PasswordReset/ForgotPasswordConfirmationSuccessText and set the type as Text and add whatever you want as the value.
The value will than be displayed properly.
Hi @saudali_25,
thanks for your reply.
Whysoever it's not working on my page.
The jQuery is working when I use the console on the page itself. I even tried adding a setTimeout() to delay the call if there's something running.
Even the debugger is not called...
I tried it with the alert, that one is showing but after that the page refreshes fully and does not seem to load anything from the content snippet.
Any other idea?
<script>
$(document).ready(function(){
$('#submit-forgot-password').on("click", function() {
setTimeout(function(){
debugger;
$('.form-horizontal div.xrm-attribute-value:last').text('Testtext');
}, 500);
})
setTimeout(function(){
debugger;
$('.form-horizontal div.xrm-attribute-value:last').text('Testtext');
}, 500);
})
</script>
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.
Hey@Fubar, @saudali_25,
you guys got any idea? Still couldn't figure out how to adress that specific page.
Sorry to bother you.
The same goes for the Email confirmation page after hitting the button for email confirmation on the profile page.
Is there any way on how to configure those blue textboxes?
Thanks for any advice.
WarrenBelz
4
Most Valuable Professional
oliver.rodrigues
2
Most Valuable Professional
Rondel
2