Change forgotpassword layout - Gigya screensets - gigya

I want to change the Forgot password layout, means when a user enters an invalid email (and if he/she is unregistered). I want to display a message that the email is invalid and the user can click sign in below.
I am new to Gigya customizations, and looking forward to helpful replies.
Thanks

The Forgot Password screen is easily customizable via the UI Builder.
See the documentation at https://developers.gigya.com/display/GD/UI+Builder for information on how to use it.

Related

Laravel - Changing the Base URL of the Reset Email URL that's being sent to users

I am using Laravel's default email functionality when sending the password reset link to users, and because of this, i wanted to change some parts of the email content that's being sent. One of those is the base URL of the reset link in the email.
In the email, it has this:
I wanted to change the Base URL http://localhost:8081 into something different since I am hosting other web apps on a different domain.
How can I do that?
Any tips are greatly appreciated!
You mean you have 2 servers. One for user to click reset password (an email will be sent to user). The other for handling reset password logic (after user click the link in email, fill new information and submit)
Is that right?
You can check Reset Email Customization and domain you can set in .env for getting

How can i change the custom email after the password reset link sent

After clicking on forgot password. and Send Password reset link, i need to change the email sent to the user. Where do i find this view?
if you are using laravel 5.3 or above
use setPasswordResetNotification($token) on your user model, and return your own notification how ever you want to design it. :) check here.
https://laravel.com/docs/5.4/passwords#password-customization
you can change this view on:
resources=>views=>auth=>emails=>password.blade.php
Good luck :)

Unable to sign up at Heroku

I am unable to create an account at Heroku.com for some reason. Note that I do not have an account and am trying to create one.
I am able to click "Sign Up" on the home page, input my email address, receive the validation email, follow the link from validation email to page where input password and then am supposed to click "Save". At this screen, my email address has already been filled out (since I followed the link from the email) so I just pick a password, and put the same password in the "Confirm Password" box.
At this point I would expect the "Save" button to light up (or allow me to click it) but nothing happens when I click it.
I would check the Heroku site for help but am required to log in before getting help.
Using Chrome on Win 7. Using Lastpass for password management.
Heroku requires that the password be typed in rather than automatically added with something like Lastpass. Once the password has been typed in, the "Save" button will light up and allow you to proceed.

How to disable Joomla Unique Email Functionality?

I have a site with Joomla 1.5.25. I have user login facilty with the site. I have modified Joomla's default functionality. Also I have created a user acount via php MyAdmin and entered so many data approximatly 1200 user entry.
But now I face a problem with the Email at Joomla backend.
When I trying to changed the Email ID via the back-end(user managment), its fires an error that:
"Email Id alread in used."
So here I want to change this Unique Email validation and it allow me to enter the Email ID if its already used by other one. Is ther any way or patch to set it disable?
Thanks!
There is no "easy" solution to work with duplicated emails.
But if you really need to do it, you have to override JTableUser (see line 230) and take care of sideffects like the ability to reset a password on com_users.

Joomla - How to let Registered users change their password

I have a website based on Joomla 1.5.22. I want users to change the password on the frontend. Using the menumanager i can bring up the page but i want to show only username, email, password and verify password. But it's bringing more info like change backend language.
You should use the User Form menu item you mentioned, as that is the native interface for allowing users to change their password. However, since you want to avoid the other fields, you can simply disable "Front end user parameters" in Global Configuration > System.
This did it for me:
http://www.dummies.com/how-to/content/how-to-let-users-manage-their-own-accounts-in-joom.html
Concretely, the URL for the user to edit her details is here:
index.php?option=com_user&view=user&layout=form
Joomla 1.5

Resources