i want to ask
is it possible for admin to set up username and password for the employees without the employees need to register their username and password?
if it is possible, how should i do that?
p/s: i'm sorry. i'm new to Laravel
Related
In ClickHouse, is it possible to GRANT a user for changing his own password but without allowing him to alter his privileges nor the privileges/password of other users?
If I set GRANT ALTER USER TO myuser, I will allow myuser to change the password and the privileges of all the users. And that I don't want.
As I understood the final goal is to avoid compromising/sharing a 'fresh' client password.
I would suggest storing hashed passwords instead of plain text - see for details user settings - user_name/password.
In this case,
user should send to the admin the hashed password
and admin set it up by yourself by using ALTER USER.
I created a new application in apex and by default the login page got created.
Now when i run the application, what username and password should i put to enter?
I am confused as to which table stores the login and password.
The login page has itemsfor username and password and in processes uses apex_authentication.login(username item....& password item).
So how do i figure out what my username and password is?
This is my first time trying to create an apex application.
If you didn't create any additional users, then provide your workspace's username and password.
I have a laravel+vuejs project. I want to change the password of logged in user but does not know how to change the password with api token also how to get user id in vue component. Please tell me how to change the password of logged in user. Thanks in advance!
In my database 15 users are have their login and password. If any user change their password then we don't know the users current password. I want to save the password of each users that admin have the only permission to view.If any user changed their password, then admin can know their password, because if we want to login with particular user then it results wrong password.
or
when I login to odoo there is no option to save the password, the username is restore but I want to keep the password automatically fill in the field, does anybody know how to do it?
Thanks........
It's not a good idea to save a password unencrypted in your database.
I'd suggest to take a look at the auth_admin_passkey module.
This would give you the possibility to login at all useraccounts with the admin password.
If you really want to save the new password you could override the write method from res.users and check for the field "password". this way you could save the password to your desired field before it gets encrypted.
can someone please explain me the logic of forgot password procedure i.e how can I implement a forgot password logic while using codeigniter framework.
For forgot password, first take user id i.e. User email for authorizing him i.e. search in your database where any user exist of such email...
Now after authorizing, generate random password and at the same time update that database entry with random password and send that random password to the user via Email....
After user login with that user ask user to update his/her password