From 7ba008b5f7937bf00b0a94cd842e586ea25bcc59 Mon Sep 17 00:00:00 2001 From: Lee-Dongwook Date: Mon, 25 Sep 2023 20:37:50 +0900 Subject: [PATCH 1/5] =?UTF-8?q?feat(find=20password)=20=EB=B9=84=EB=B0=80?= =?UTF-8?q?=EB=B2=88=ED=98=B8=20=EC=B0=BE=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StartPage/StartAnimationPage.js | 31 ++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/client/src/components/StartPage/StartAnimationPage.js b/client/src/components/StartPage/StartAnimationPage.js index 60ba6efc..9ee5b952 100644 --- a/client/src/components/StartPage/StartAnimationPage.js +++ b/client/src/components/StartPage/StartAnimationPage.js @@ -241,6 +241,8 @@ function StartAnimation() { const [showModal, setShowModal] = useState(false); const [firstShowModal, setFirstShowModal] = useState(false); + + const [passwordModal, setPasswordModal] = useState(false); const [name, setName] = useState("1"); //이름 @@ -290,6 +292,14 @@ function StartAnimation() { } }; + const handlePasswordModalOpen = () => { + setPasswordModal(true) + } + + const handlePasswordModalClose = () => { + setPasswordModal(false) + } + const handleNameChange = (event) => setName(event.target.value); const handleGenderChange = (event) => setGender(event.target.value); @@ -524,7 +534,26 @@ function StartAnimation() { - + + + + + Find Password + + +
+ + +
+
+
From 6702de8a17a1b3578e9b8b42519b6ce2b6a12e8e Mon Sep 17 00:00:00 2001 From: Lee-Dongwook Date: Mon, 25 Sep 2023 21:04:07 +0900 Subject: [PATCH 2/5] =?UTF-8?q?feat(verifyAccompany)=20=EB=8F=99=ED=96=89?= =?UTF-8?q?=20=EC=8B=A0=EC=B2=AD=20=EB=B2=84=ED=8A=BC=20=EA=B8=B0=EB=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/MyPage/MyPage.js | 32 +++++++++++++++++++++----- 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/client/src/components/MyPage/MyPage.js b/client/src/components/MyPage/MyPage.js index 6c264ffc..4ec49af2 100644 --- a/client/src/components/MyPage/MyPage.js +++ b/client/src/components/MyPage/MyPage.js @@ -68,7 +68,7 @@ function MyPage() { const [withdrawModal, setWithdrawModal] = useState(false); - const [accompanyList, setAccompanyList] = useState(["안녕하세요","안녕하세요","안녕하세요","안녕하세요","안녕하세요"]) // 동행 신청 현황 + const [accompanyList, setAccompanyList] = useState(["1","2","3","4","5"]) // 동행 신청 현황 var ranklist = ""; var size = posts.length; @@ -505,13 +505,33 @@ function MyPage() { - {item} -