Build a Fullstack Login & Register Page with MERN (react.js, mongo, express, bcrypt, jwt & more)

Build a Fullstack Login & Register Page with MERN (react.js, mongo, express, bcrypt, jwt & more)

77,714 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Meghpriya Acharya
Meghpriya Acharya - 19.11.2023 07:23

Thank you so much this helped a lot.

Ответить
gregory cuevas
gregory cuevas - 18.11.2023 06:48

It does not have security, if you put /home in the search bar it will access it and it cannot be that way

Ответить
Tal Kedem
Tal Kedem - 08.11.2023 11:44

thank you for this tutorial!,very helpful!

Ответить
Anus Khalil
Anus Khalil - 30.10.2023 12:05

Hi! I have an issue and Issue is name is not displaying on the dashboard. Why?

Ответить
Abdulaziz Sığar
Abdulaziz Sığar - 21.10.2023 00:35

its helped a lot bro thanks...
😍

Ответить
WeebAndKeeb
WeebAndKeeb - 17.10.2023 23:50

Thanks for the video man! I have learnt a lot from it.

Ответить
André Silveira Castanho
André Silveira Castanho - 16.10.2023 19:52

Hi Brett, my dashboard doesn't refresh the old login name on the screen? could you kindly help me? thanks!

Ответить
kumar_Sanjeev dutta
kumar_Sanjeev dutta - 16.10.2023 14:53

You didn't mention the logout functionality

Ответить
kumar_Sanjeev dutta
kumar_Sanjeev dutta - 15.10.2023 12:04

Great, I liked your step by step approach

Ответить
Code with Gab
Code with Gab - 12.10.2023 18:02

Hi Glad that I found your tut, hoping to have more regarding MERN CRUD, thanks

Ответить
Ta Ngoc Duy
Ta Ngoc Duy - 08.10.2023 07:26

i meet that error: "JsonWebTokenError: jwt must be a string" in getProfile function and then I figure it out that because of
const token = req.cookies
it can be replaced with const token = req.cookies.token; It does work for me.
Anyway, thank you for your course. It really worth for me a lot

Ответить
Abbey Ogundiran
Abbey Ogundiran - 01.10.2023 15:00

great video @brettwesrwooddeveloper nice concept and easy to follow but could you please do a follow up video on styling it and if possible use tailwind css

Ответить
Abhishek Shukla
Abhishek Shukla - 29.09.2023 16:34

super useful, thank you very much.

Ответить
Naseeh AN
Naseeh AN - 26.09.2023 10:47

broo its the best video on this topic!!!!!!!!
Subscribed🤩🤩

Ответить
cool tv
cool tv - 25.09.2023 14:37

great explanation

Ответить
Morris
Morris - 25.09.2023 09:02

Is source code available?

Ответить
William Maroon
William Maroon - 24.09.2023 21:52

Great video. Followed it all the way through and with some rewatches I got it all to work. I think you would get a lot of views with some quicker "follow up" videos. Adding a log-out button, making multiple user role types, and editing data within the dashboard would be logical next steps. There also seems to be a lot of people asking for source code, I think that is because most of the other MERN stack guides are older and don't work anymore. Maybe you could sell the source code, get a buy me a coffee link or something. Great start!!

Ответить
heredavid
heredavid - 13.09.2023 22:06

no tengo cookies en el header :C trate de todos, hay un repositorio ?

Ответить
nushan hansana
nushan hansana - 11.09.2023 21:04

❤❤

Ответить
HendyBoy
HendyBoy - 03.09.2023 19:02

Sir in this video the login and registration form is created. Sir please make a video on how to show that data in the profile and why to put the image as well.
Please sir

Ответить
HendyBoy
HendyBoy - 03.09.2023 16:45

Thank you thank you so much brother you are like God gifted for me.🫡🫡🙏🙏 I am bca student from India and I am very helpful for my project, but not anyone can teach for best way but I see your video. I thought, why can't find first you..❤

Ответить
Alexander Hader
Alexander Hader - 03.09.2023 14:04

Thank you very much, very well explained.

Ответить
des
des - 03.09.2023 02:40

only half way through the video but i love the react toast its so clean

Ответить
ADC
ADC - 26.08.2023 22:31

Thanks a bunch, brother. Such a fantastic tutorial for beginners.

Ответить
Tooba Taqi
Tooba Taqi - 26.08.2023 08:25

Bro, you don't know how you saved my life. stay blessed

Ответить
N.H Sohan
N.H Sohan - 25.08.2023 07:01

so helpful, sir how can i set stay user logged in even user close the browser and reopen it.

Ответить
Adebiyi Emmanuel
Adebiyi Emmanuel - 23.08.2023 23:01

is cookies secure?

Ответить
aziznaufalll
aziznaufalll - 23.08.2023 04:26

This is a very good tutorial, thank you sir. i subbeddd

Ответить
Johannes Abate
Johannes Abate - 14.08.2023 19:14

honestly, this is the only tutorial that works. plus tnx for details

Ответить
Arunav Gupta
Arunav Gupta - 14.08.2023 16:41

hyy , i am getting error of intermediate object undefined while making register page try and catch section

Ответить
The Humanist
The Humanist - 11.08.2023 17:49

Couple things...
First off, thank you so much. This really was a fantastic walkthrough. Other people do this 'simple' registration/login MERN bit way too quickly. I really like your speed. Others can 1.5x or 2x if they need but I think it is a good speed for just 1x.
Second, your desktop makes me feel normal 😂 your desktop looks JUST like mine! So many icons. I'm not alone. What a relief, truly.

Also, you can for sure use async/await in useEffect. You just don't want to do this `useEffect( async ( ) =>{ },[ ])` You would want to instead create a function inside the useEffect and then call it in the useEffect as well... Here we could call it setUser(). So just something like:
```
useEffect(() => {

const fetchUser = async () => {
if (!user) {
const { data } = await axios.get('/profile')
setUser(data)
}
}
fetchUser();
}, [ ])
```

OR

You can use an immediately invoked function

```
useEffect(() => {

( async () => {
if (!user) {
const { data } = await axios.get('/profile')
setUser(data)
}
})( );
}, [ ])
```

I think you just meant that you can't `useEffect( async ( ) =>{ },[ ])`, but I wanted to leave this here for anyone that might be confused by that statement.

Thanks again for this, man! Keep it up! You gained a new subscriber out of me!

Ответить
Guraj Bhoday
Guraj Bhoday - 07.08.2023 14:47

Great tutorial ! Can this be built upon whereby there is an admin side to see which users have signed up?

Ответить
Alle Gro
Alle Gro - 05.08.2023 17:34

help me with error

Ответить
EntitleOp
EntitleOp - 04.08.2023 11:22

Every thing was top notch , except your sound

Ответить
Sujal Mishra
Sujal Mishra - 03.08.2023 22:22

sir can you provide the source code of this video please

Ответить
OzzieAz
OzzieAz - 03.08.2023 09:49

Hey man, I am having some issues with deploying this app. I can build the client and deploy it, but in terms of the backend/server, how do I deploy that within the same environment?

Ответить
Atheel
Atheel - 26.07.2023 21:20

Thank you for your tutorials ❣

Ответить
Bhuwan Darai
Bhuwan Darai - 23.07.2023 22:17

Want to add logout functionality and delete cookie how to do it ?

Ответить
Drag X
Drag X - 23.07.2023 20:38

You deserve more subscribers ✅💯
You explained it in very understanding way, point to point 😍🤩

Subscribed 👍❤

Ответить
Crnomudi
Crnomudi - 22.07.2023 15:15

This actually helped me a lot thanks!

Ответить
Masud Zaman
Masud Zaman - 22.07.2023 08:05

Hi Brett amazing tutorial. Can you make a video about how to handle logout?

Ответить
Rashid Pirahesh
Rashid Pirahesh - 17.07.2023 12:13

thanks

Ответить
Sinan Rasheed
Sinan Rasheed - 13.07.2023 09:53

Bro how to do the google login in this mern project

Ответить
Artur
Artur - 08.07.2023 17:15

You should use import not require

Ответить
nelson makinde
nelson makinde - 06.07.2023 11:46

Please can you do the Logout page?

Ответить