Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Web Programming
# webdbprogramming

Welcome to Web Programming course. In this page, you will find all the material related to the lecture.
web db programming 기말과제 (컴퓨터공학과 202135933 김수정)

웹개발 과목을 등록하는 학생 여러분께 짐심으로 환영합니다.
해당 페이지에서는 강의 관련 내용이 나와있습니다.

## We will discuss about particularly about the backend programming that will cover Javascript, NodeJS, ExpressJS and MySQL database in particular.
code/main.js를 실행 후 로컬 서버로 접속하면 웹 페이지에 접근할 수 있습니다.(http://localhost:65000)

db: db/hoteldb.sql을 다운받아 사용할 수 있습니다.
16 changes: 16 additions & 0 deletions code/locales/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"about": "about us",
"room": "room",
"contacts": "contacts",
"reservation": "reservation",
"login": "login",
"signup": "sign up",
"mypage": "mypage",
"id": "id",
"password": "password",
"password2": "confirm password",
"name": "name",
"phone": "phone",
"book": "book a room",
"logout": "logout"
}
17 changes: 17 additions & 0 deletions code/locales/ko.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"about": "호텔 소개",
"room": "객실",
"contacts": "문의",
"reservation": "예약",
"login": "로그인",
"signup": "회원가입",
"mypage": "마이페이지",
"id": "아이디",
"password": "비밀번호",
"password2": "비밀번호 확인",
"name": "이름",
"phone": "전화번호",
"book": "예약하기",
"contact": "contact",
"logout": "logout"
}
Loading