Next.js Discord

Discord Forum

Passing Data from one page to another

Answered
Boreal Chickadee posted this in #help-forum
Open in Discord
Boreal ChickadeeOP
I have login page where i get data from backend api n now i want to send that data to profile page
how can i do this ?
Answered by B33fb0n3
Normally you have a session and then can directly access the session. There is for example a userId and then the profile page will be loaded for that specific user (using the userId)

When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
View full answer

3 Replies

@Boreal Chickadee I have login page where i get data from backend api n now i want to send that data to profile page how can i do this ?
Normally you have a session and then can directly access the session. There is for example a userId and then the profile page will be loaded for that specific user (using the userId)

When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
Answer
happy to help