Creating a username and password?

Hello ,

I am trying to create something where only i can log in for example , I want to set a specified email and password that will let me log in. Im sorry i do not know how to explain very good , Like only allowed to have 1 user (me) for which i can set a specfic email and password. How could i do this??

Thank you very much in advance.

Victor.

  1. Create a page called test.

  2. Add an email input and a password input.

  3. Add a button.

  4. Add the “Sign Up” action for when that button is clicked.

  5. Preview the page and fill out the form. Once you click the button, you’ll be signed up. To check, do to your “User” database table.

Hope this helps!
Daniel

Thank you for the help Daniel , however what i am trying to do is , not allow any signup. Just 1 set of username and password to ever exist , which will be the only one to be able to log in. Would this be acomplished with the same steps you mentioned above? Thanks.

Victor.

Once you’re done signing up, change the action from signup to login.

1 Like

Something I tried was to simply create two input fields.

  1. Input field 1 = enter username and Input field 2 = enter password.
  2. Create a button and name it “Login”
  3. Create a workflow, whereby when the login button is clicked, the user is navigated to the page you desire but only when username = whatever you wish and password = whatever you wish.

This way, you can ensure there is just one username and password for the entire system.

1 Like