강의

멘토링

커뮤니티

BEST
Programming

/

Full-stack

A Full-Stack Restaurant Guide Project for Non-Majors!: Front, Back-end, and Deployment

This is a full-stack restaurant map tutorial that allows you to learn everything from front-end, back-end, Kakao Map API usage, and deployment all at once while creating a restaurant map of your favorite YouTuber.

(4.8) 35 reviews

707 learners

  • Jiwoon Jeong
HTML/CSS
JavaScript
REST API
MySQL
AWS

June 22nd Lecture Update Guide (Authentication, HTTPS)

hello.

The information below has been updated!

In the updated video, I assume you have already learned the previous content, so I have sped up the lecture a bit.

If you have any difficulties, please leave a question on the Q&A board and we will respond quickly. :)

 

1. Membership registration function

You can create a function that allows users to sign up by entering their ID, password, and nickname.

Enter the requested user into the DB and issue a token (JWT) to enable use of member functions.

 

2. Login function

Users who have registered can log in and use member services by entering their ID and password.

 

3. Implementing the stay logged in and logout functions

Logged in users are displayed as "Hello (nickname)" in the header.

You can log out by pressing the logout button and deleting the token from local storage.

 

4. Apply HTTPS

As the number of security-related factors such as authentication functions increases,

You need to use a more secure method of communication.

You can use Let's Encrypt to issue an SSL certificate and apply HTTPS communication to your restaurant map site.

Comment