-
Notifications
You must be signed in to change notification settings - Fork 25
Basic 김현제 sprint3 #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ranflir
wants to merge
24
commits into
codeit-sprint-fullstack:basic
Choose a base branch
from
ranflir:basic-김현제-sprint3
base: basic
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
The head ref may contain hidden characters: "basic-\uAE40\uD604\uC81C-sprint3"
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
091dbdd
too hard to me first time Html,css
ranflir 6826fb8
Sprint-mission1
ranflir 4cb8381
Sprint_mission2
ranflir e9dff97
Update CSS file paths
ranflir f8d17d5
feat: connect Google Analytics
ranflir 119c4c1
feat: update FAQ page content
ranflir 4576e55
feat: update Items page content
ranflir c6b8b5a
feat: update login page content
ranflir 5c68baf
feat: update Privacy page content
ranflir db59cc8
feat: update Signup page content
ranflir 99ed30c
Improve image folder structure
ranflir e6609d6
Refactor: rename index.css to home.css
ranflir 5d1e23a
Refactor: rename login-style.css to global.css
ranflir 2560095
Refactor: rename home.css to auth.css
ranflir a7ff8b5
Refactor: rename login-style.css to home.css
ranflir 3961df9
refactor: rename home.css
ranflir 93e5f19
feat: add basic email validation and link auth.js
ranflir 3263df7
feat: 이메일 빈 값 체크 시 .error 클래스 추가 및 에러 메시지 노출
ranflir 56fdc36
feat: 이메일 형식 유효성 검사 추가 (정규표현식 활용)
ranflir 21ffdfd
feat: 비밀번호 유효성 검사 구현 및 에러 메시지 레이아웃 수정
ranflir 87569ee
feat: 유효성 검사에 따른 로그인 버튼 활성화 및 페이지 이동 로직 구현
ranflir f915dd3
feat: 회원가입 비밀번호 확인 및 유효성 검사 로직 추가
ranflir 8c46a9c
feat: 로그인 시 USER_DATA와 이메일/비밀번호 대조 로직 추가
ranflir aa8f424
feat: 회원가입 이메일 중복 체크 및 버튼 활성화 조건 추가
ranflir File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| { | ||
| "liveServer.settings.port": 5501, | ||
| "cSpell.words": ["codeit", "NXNMB"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,197 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="ko"> | ||
| <head> | ||
| <!-- Google Tag Manager --> | ||
| <script> | ||
| (function (w, d, s, l, i) { | ||
| w[l] = w[l] || []; | ||
| w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' }); | ||
| var f = d.getElementsByTagName(s)[0], | ||
| j = d.createElement(s), | ||
| dl = l != 'dataLayer' ? '&l=' + l : ''; | ||
| j.async = true; | ||
| j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | ||
| f.parentNode.insertBefore(j, f); | ||
| })(window, document, 'script', 'dataLayer', 'GTM-NXNMB8PH'); | ||
| </script> | ||
| <!-- End Google Tag Manager --> | ||
|
|
||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>판다마켓</title> | ||
| <link rel="icon" href="images/logo/favicon.ico" /> | ||
| <link | ||
| rel="stylesheet" | ||
| as="style" | ||
| crossorigin | ||
| href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" | ||
| /> | ||
| <link rel="stylesheet" href="styles/global.css" /> | ||
| <link rel="stylesheet" href="styles/home.css" /> | ||
|
|
||
| <script | ||
| async | ||
| src="https://www.googletagmanager.com/gtag/js?id=GTM-NXNMB8PH" | ||
| ></script> | ||
| <script> | ||
| window.dataLayer = window.dataLayer || []; | ||
| function gtag() { | ||
| dataLayer.push(arguments); | ||
| } | ||
| gtag('js', new Date()); | ||
|
|
||
| gtag('config', 'GTM-NXNMB8PH'); | ||
| </script> | ||
| </head> | ||
|
|
||
| <body> | ||
| <!-- Google Tag Manager (noscript) --> | ||
| <noscript> | ||
| <iframe | ||
| src="https://www.googletagmanager.com/ns.html?id=GTM-NXNMB8PH" | ||
| height="0" | ||
| width="0" | ||
| style="display: none; visibility: hidden" | ||
| ></iframe> | ||
| </noscript> | ||
| <!-- End Google Tag Manager (noscript) --> | ||
| <header> | ||
| <a href="/"> | ||
| <img src="images/logo/logo.svg" alt="판다마켓 홈" width="153" /> | ||
| </a> | ||
| <a href="login.html" id="loginLinkButton" class="button">로그인</a> | ||
| </header> | ||
|
|
||
| <main class="with-header"> | ||
| <section id="hero" class="banner"> | ||
| <div class="wrapper"> | ||
| <h1> | ||
| 일상의 모든 물건을 | ||
| <br /> | ||
| 거래해 보세요 | ||
| </h1> | ||
| <a href="items.html" class="button pill-button">구경하러 가기</a> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section id="features" class="wrapper"> | ||
| <div class="feature"> | ||
| <img | ||
| src="images/home/feature1-image.png" | ||
| alt="인기 상품" | ||
| width="50%" | ||
| /> | ||
| <div class="feature-content"> | ||
| <h2 class="feature-tag">Hot item</h2> | ||
| <h1> | ||
| 인기 상품을 | ||
| <br /> | ||
| 확인해 보세요 | ||
| </h1> | ||
| <p class="feature-description"> | ||
| 가장 HOT한 중고거래 물품을 | ||
| <br /> | ||
| 판다마켓에서 확인해 보세요 | ||
| </p> | ||
| </div> | ||
| </div> | ||
| <div class="feature"> | ||
| <div class="feature-content"> | ||
| <h2 class="feature-tag">Search</h2> | ||
| <h1> | ||
| 구매를 원하는 | ||
| <br /> | ||
| 상품을 검색하세요 | ||
| </h1> | ||
| <p class="feature-description"> | ||
| 구매하고 싶은 물품은 검색해서 | ||
| <br /> | ||
| 쉽게 찾아보세요 | ||
| </p> | ||
| </div> | ||
| <img | ||
| src="images/home/feature2-image.png" | ||
| alt="검색 기능" | ||
| width="50%" | ||
| /> | ||
| </div> | ||
| <div class="feature"> | ||
| <img | ||
| src="images/home/feature3-image.png" | ||
| alt="판매 상품 등록" | ||
| width="50%" | ||
| /> | ||
| <div class="feature-content"> | ||
| <h2 class="feature-tag">Register</h2> | ||
| <h1> | ||
| 판매를 원하는 | ||
| <br /> | ||
| 상품을 등록하세요 | ||
| </h1> | ||
| <p class="feature-description"> | ||
| 어떤 물건이든 판매하고 싶은 상품을 | ||
| <br /> | ||
| 쉽게 등록하세요 | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section id="bottomBanner" class="banner"> | ||
| <div class="wrapper"> | ||
| <h1> | ||
| 믿을 수 있는 | ||
| <br /> | ||
| 판다마켓 중고거래 | ||
| </h1> | ||
| </div> | ||
| </section> | ||
| </main> | ||
|
|
||
| <footer> | ||
| <div>©codeit - 2024</div> | ||
| <div id="footerMenu"> | ||
| <a href="privacy.html">Privacy Policy</a> | ||
| <a href="faq.html">FAQ</a> | ||
| </div> | ||
| <div id="socialMedia"> | ||
| <a | ||
| href="https://www.facebook.com/" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| <img | ||
| src="images/social/facebook-logo.svg" | ||
| alt="페이스북" | ||
| width="20" | ||
| /> | ||
| </a> | ||
| <a | ||
| href="https://twitter.com/" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| <img src="images/social/twitter-logo.svg" alt="트위터" width="20" /> | ||
| </a> | ||
| <a | ||
| href="https://www.youtube.com/" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| <img src="images/social/youtube-logo.svg" alt="유튜브" width="20" /> | ||
| </a> | ||
| <a | ||
| href="https://www.instagram.com/" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| <img | ||
| src="images/social/instagram-logo.svg" | ||
| alt="인스타그램" | ||
| width="20" | ||
| /> | ||
| </a> | ||
| </div> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="ko"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>판다마켓 - FAQ</title> | ||
| <link rel="icon" href="images/logo/favicon.ico" /> | ||
| <link | ||
| rel="stylesheet" | ||
| as="style" | ||
| crossorigin | ||
| href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" | ||
| /> | ||
| <link rel="stylesheet" href="styles/global.css" /> | ||
| </head> | ||
|
|
||
| <body> | ||
| <h1>임시 FAQ 페이지</h1> | ||
| </body> | ||
| </html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
컨피그는 따로 관리해주세요~