Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How To Make a Login (With Passwords)
- LoGaNO_o
-
74 posts
How To Make a Login (With Passwords)
Is there a way someone could explain, and give me some tips on how to make a login screen? It would be really helpful! 

- LIZARD_OFFICIAL
-
100+ posts
How To Make a Login (With Passwords)
if you are planning to store passwords in a list,i recommend you to use a hashing method.You can use mine too!
It's called CHA-8
It's called CHA-8
- legendary34678
-
1000+ posts
How To Make a Login (With Passwords)
To make a log-in screen, usually there will be a welcome message or an icon. Then, there will be options to enter in a username and a password. Finally, there's always a log-in button.
- -ElectronicArts-
-
1000+ posts
How To Make a Login (With Passwords)
First you have an available server for storing the password and login cr. make sure the server is secured so no one can see the password. to do this you need python knowledge.
Next is visuals on project. Usually login screens have a username and password input. the username box is identified from the user's username through the
Then make request to the user to input their password to the text box. after it send the password data to server using an encrypted method (numbers you can search it).
Next is visuals on project. Usually login screens have a username and password input. the username box is identified from the user's username through the
after you get the username info make a text engine that can output the username.
Then make request to the user to input their password to the text box. after it send the password data to server using an encrypted method (numbers you can search it).
- cs3203402
-
47 posts
How To Make a Login (With Passwords)
So, one idea would be to create an encoded save code for the user and decode it whenever they log back on. This code would save everything they have. Their username, info, files, and other stuff of the like. Depends on what you're using it for. @griffpatch has tutorials on encoding and decoding, so you can use that.
- Onako2
-
51 posts
How To Make a Login (With Passwords)
Why is python required? I made the backend in scratch. I leave the browser tab on my Rasberry PI open. May sound innefficient but it works! First you have an available server for storing the password and login cr. make sure the server is secured so no one can see the password. to do this you need python knowledge.Example
Next is visuals on project. Usually login screens have a username and password input. the username box is identified from the user's username through theafter you get the username info make a text engine that can output the username.
Then make request to the user to input their password to the text box. after it send the password data to server using an encrypted method (numbers you can search it).
- LoGaNO_o
-
74 posts
How To Make a Login (With Passwords)
Oh wow, I didn't expect to get this much help! Thanks! I'll try to post updates I guess?
- -ElectronicArts-
-
1000+ posts
How To Make a Login (With Passwords)
Sorry, im used to python.Why is python required? I made the backend in scratch. I leave the browser tab on my Rasberry PI open. May sound innefficient but it works! First you have an available server for storing the password and login cr. make sure the server is secured so no one can see the password. to do this you need python knowledge.Example
Next is visuals on project. Usually login screens have a username and password input. the username box is identified from the user's username through theafter you get the username info make a text engine that can output the username.
Then make request to the user to input their password to the text box. after it send the password data to server using an encrypted method (numbers you can search it).
- Discussion Forums
- » Help with Scripts
-
» How To Make a Login (With Passwords)