Click here to Skip to main content
16,022,060 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to create a webpage with merely a "username" and "password" input. On entering the username and password and submitting the same, i want it to redirect and login into "lets say my facebook account" using the username and password the i input in my webpage.

I dont know to code and was keen if there was a solution to this. Thank you.

What I have tried:

I have not tried anything yet as i dont know to code. Sorrry
Posted
Updated 20-Sep-24 23:07pm
Comments
Richard Deeming 23-Sep-24 3:40am    
Even if you did know how to code, your requirement sounds suspiciously like setting up a "phishing" website, where you convince people to hand over their credentials for another site, then use those credentials to steal their account.

Nobody in their right mind is going to help you constructing that sort of site!

Taking that this question is serious, then...

If you don't know how to code, there is no way around learning how to do it. At least not without paying someone to do it for you.

Start having a look to which languages are available to program webs, then chose one and start reading documentation, articles here and or tutorials (the net is full of beginner things).
Download a Visual Studio for private use or VSCode, depending on your needs

Create a project and start doing things one step after another.

1) create a web with a simple text and test if it works
2) put a couple of input boxes and created a pop up to see what you entered
3) learn how to encrpyt the input data
4) if it is only for the given data, then you won't need a database. If you want to have more things saved, then you will need one
5) if you use a database, do not use the literal data, learn how to do parametrized queries
6) at this point you should be able to continue on your own.

If you have concrete questions about a particular issue, do not hesitate to come and ask again. But not such a big open question. The more concrete, the better.

Have fun
 
Share this answer
 
v2
To add to what Nelek has said, you may find this useful: How to Write Code to Solve a Problem, A Beginner's Guide[^]
But as Nelek said, you will need to learn a language before you even start this project!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900