How to Change Password in Email Verification if you Forget Your Password in Oracle Apex Apps, User Authentication.
In today's post I will try to show you how to Change Password in Email Verification if you Forget Your Password in Oracle Apex. I hope you can easily use user authentication for your Oracle Apex application using the SQL code provided by me.
Click on the link below to view the previous post and video how to create google authentication in oracle apex. User Authentication
How To Create Google Authentication in || User Authentication, Part-8
6. Create a Region Name- Email Verification
Congratulation, Your account verification is done.
Change Your Password.
7. Create Item Name-EMAIL_ADDRESS, NEW_PASSWORD, CONFIRM_NEW_PASSWORD 8. Create a Validations Name-New Password
:P14_NEW_PASSWORD = :P14_CONFIRM_NEW_PASSWORD
9. Create a Buttons Name-Submit 10. Create a Processes Name-Update Processes
PL/SQL code
BEGIN
UPDATE MY_USERS
SET PASSWORD = :P39_CONFIRM_NEW_PASSWORD,
pin = :P39_CONFIRM_NEW_PASSWORD
WHERE EMAIL_ADDRESS = :P39_EMAIL_ADDRESS;
APEX_APPLICATION.g_print_success_message :=
'Password Successfully Created';
EXCEPTION
WHEN OTHERS
THEN
APEX_APPLICATION.g_print_success_message := 'Password Not Updated';
END;
If there is any problem with the SQL code provided by me then you can definitely let me know by mail or mobile number and comment. I must give you any SQL code. User Authorization
See My Demo Application.
Url- Demo Application
Username- demo, Pass- demo
Links to all the parts related to User Authorization will be given below.
1. User Authorization Schemes, Part-1 Video Url- https://youtu.be/vSdzwnkFDRs 2. Add Create New Account button on the login page, User Authorization, Part-2 Video Url- https://youtu.be/IajwZ5dp6Qc
3. Create a ChangePassword Page, User Authorization, Part-3 Video Url- https://youtu.be/iRXsO0MTOuM
4. Reset Password, User Authorization, Part-4 Video Url- https://youtu.be/IK3PjyWGQIA
5. Dynamic Navigation Menu, User Authorization, Part-5 Video Url- https://youtu.be/Ozoc4cpjBKY
6. Set Menu According To User Access Role, User Authorization Part-6 Video URL- https://youtu.be/X407N_N2HNM
7. Add Edit Button in Report According to User Access Role || Oracle APEX? User Authentication, Part-7.User Authorization Video URL- https://youtu.be/n9W64qUoS1E
8. Access google authentication in Oracle Apex | Google Authentication. User Authorization Video URL- https://youtu.be/X407N_N2HNM
9. Change Password in Email Verification if you Forget Your Password. User Authorization Video URL- https://youtu.be/MPZQuraig7w
Hope you find this post helpful User Authorization. To see more about Oracle Apex User Authorization, you can visit my website.
You can also visit my youtube channel. I try my best to share my education with everyone. I will always try to give you something new. Please help by subscribing to my youtube channel.
Many thanks for visiting the site.