Login PHP Page
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/login_basics.html
http://www.wysiwygwebbuilder.com/login_tools.html
TIP:
A lot of information about the login tools can be found in the help/manual.
Also checkout the demo template that is include with the software.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/login_basics.html
http://www.wysiwygwebbuilder.com/login_tools.html
TIP:
A lot of information about the login tools can be found in the help/manual.
Also checkout the demo template that is include with the software.
- alexoliveira
-
- Posts: 240
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Login PHP Page
Hello everyone, I have the database installed and I already access pages with username and password, but the idea would be to access only with the password, can I do this using the same password as the user's database? In other words, the idea is basically that when the user accesses a page instead of typing username and password, I will type only the password.
S.A
- KingSparta
-
- Posts: 306
- Joined: Tue Dec 08, 2020 6:00 pm
- Location: Earth
Re: Login PHP Page
What if more than one person has the same password?
Retired military, Airborne, Air Assault, and Helicopter Flight Wings.
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA.
https://MyAAGrapevines.com
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA.
https://MyAAGrapevines.com
- alexoliveira
-
- Posts: 240
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: Login PHP Page
The idea is to create a PIN for each user. This PIN is actually a password. No user can change or alter it, only the administrator.
For this reason, I really wanted this option so that when the user accesses a page, for example a presentation of statistics, the page asks for the PIN (password).
For this reason, I really wanted this option so that when the user accesses a page, for example a presentation of statistics, the page asks for the PIN (password).
S.A
- alexoliveira
-
- Posts: 240
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
- wwonderfull
-
- Posts: 1594
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Login PHP Page
I think this would need some custom codes solutions on the login tools code because when someone is registered, they usually use their email address or username and password so as you are saying that they will have a pin code to login with that means that they would have to have a unique pin for each person so that they can be identified because passwords can be same, but pin codes has to be unique. So, in this case PIN Code is working as both as identifying id and as the password.
Re: Login PHP Page
There is no standard solution for this. The built-in login tools were designed to use username/password.
Re: Login PHP Page
What about you use same username and password? I mean use the PIn as username and password, then ask a unique value and replicates it in Username and Password fields.
Cheers!
Cheers!
- wwonderfull
-
- Posts: 1594
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Login PHP Page
That may not work, I think. Because a person who registered does not know his own PIN until he is emailed after his registration. And if he needs to change it then the built in forget password would be of no use. And the administrative panel would not be able to help anyhow in terms of managing pin codes because it was made for Username and passwords and activation control for users who sign-up.miguelss wrote: Sun May 25, 2025 9:49 am What about you use same username and password? I mean use the PIn as username and password, then ask a unique value and replicates it in Username and Password fields.
Cheers!
- alexoliveira
-
- Posts: 240
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: Login PHP Page
So would it be possible to request just a password for the customer to access a page?
Thank you to everyone who is stopping by to give their feedback, thank you team builders
Thank you to everyone who is stopping by to give their feedback, thank you team builders
S.A
- wwonderfull
-
- Posts: 1594
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Login PHP Page
As I have said logging in with only password (Unique PIN like password) is possible even without email or username, but it would need alteration of many parts of the server sided php codes and even on some elements of the frontend for validation. But that would require custom codes and changes in many places of the login code snippets.
Because if there is no email id or username when they register and if there is only a password which people can't just randomly write to sign up. And if you are the one providing the (password+unique-id=PIN) then that means they are not registering, and you are pre-registering them and have to send them an email, but do you have their email when registering which you did not take or do you have a whole list already that is the thing. Even you administrating would get confused which users pin or password is this if you cannot identify it. That means it is totally a different approach on how wwb login tool works. It is not difficult but more like different.
Because if there is no email id or username when they register and if there is only a password which people can't just randomly write to sign up. And if you are the one providing the (password+unique-id=PIN) then that means they are not registering, and you are pre-registering them and have to send them an email, but do you have their email when registering which you did not take or do you have a whole list already that is the thing. Even you administrating would get confused which users pin or password is this if you cannot identify it. That means it is totally a different approach on how wwb login tool works. It is not difficult but more like different.
- wwonderfull
-
- Posts: 1594
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Login PHP Page
But if you want there could be a way where they can login with just by their unique username like @jhondoe the usernames we have in forum something like that. That could be a more simplified but insecure approach but in terms of security password is the appropriate way.
- alexoliveira
-
- Posts: 240
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: Login PHP Page
https://startagencia.net.br/
I have a customer registry, I use WHMCS and I would like to provide presentation material for advertisements, etc.
In this case, I already have a username and password and customers already access this area. What I would like to do is simply try to request one x per person, just a password instead of a username and password to access the presentation page.
and in other words, I will register the client's email, password and username, but when logging in, I would only type the password.
I have a customer registry, I use WHMCS and I would like to provide presentation material for advertisements, etc.
In this case, I already have a username and password and customers already access this area. What I would like to do is simply try to request one x per person, just a password instead of a username and password to access the presentation page.
and in other words, I will register the client's email, password and username, but when logging in, I would only type the password.
S.A
- wwonderfull
-
- Posts: 1594
- Joined: Fri Aug 21, 2020 8:27 am
- Contact:
Re: Login PHP Page
I have checked your login page with browser dev tools https://startagencia.net.br/central.php
It seems you are not use wwb's login tool. If that is the case, then what solution are we talking about. And by the way this solution needs custom codes so wwb cannot provide and help for it. But if you need custom solutions, you can hire developers who can help you out on this.
It seems you are not use wwb's login tool. If that is the case, then what solution are we talking about. And by the way this solution needs custom codes so wwb cannot provide and help for it. But if you need custom solutions, you can hire developers who can help you out on this.
- alexoliveira
-
- Posts: 240
- Joined: Fri Oct 01, 2021 5:12 am
- Contact:
Re: Login PHP Page
Exactly, I already have a login and password system.
But I create everything based on WYSIWYG. Let's see, the idea is that after the client logs in and accesses a page that I have provided (ad presentation), when opening this page, it only asks for the password that I created in WYSIWYG.
The client will already be logged into the client center.
What happens is that it is just a way for someone to access the presentation link without first entering the password.
In this case, I also have a login and password area as WYSIWYG admin where I create these client accounts and redirect each one to a presentation as needed.
In other words, the idea is
--> Login to the customer center where I use WHMCS.
--> Within the customer center, I release a button
--> ADS Presentation.
When clicking, an iframe opens where I only want to ask for the access password to open the presentation in a responsive iframe.
But I create everything based on WYSIWYG. Let's see, the idea is that after the client logs in and accesses a page that I have provided (ad presentation), when opening this page, it only asks for the password that I created in WYSIWYG.
The client will already be logged into the client center.
What happens is that it is just a way for someone to access the presentation link without first entering the password.
In this case, I also have a login and password area as WYSIWYG admin where I create these client accounts and redirect each one to a presentation as needed.
In other words, the idea is
--> Login to the customer center where I use WHMCS.
--> Within the customer center, I release a button
--> ADS Presentation.
When clicking, an iframe opens where I only want to ask for the access password to open the presentation in a responsive iframe.
S.A