From b72d027ea34a1f048bfd4fd90d0fcc393eba9fb5 Mon Sep 17 00:00:00 2001 From: RRRyoma <119156952+RRRyoma@users.noreply.github.com> Date: Fri, 21 Feb 2025 12:18:13 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=E5=88=9D=E6=9C=9F=E7=99=BB=E9=8C=B2?= =?UTF-8?q?=E3=81=AB=E3=82=B9=E3=83=86=E3=83=83=E3=83=97=E9=80=B2=E8=A1=8C?= =?UTF-8?q?=E7=8A=B6=E6=85=8B=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/app/signup/steps/step1_profile.tsx | 2 +- web/app/signup/steps/step2_img.tsx | 1 + web/app/signup/steps/step4_course.tsx | 2 +- web/app/signup/steps/step5_interests.tsx | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/web/app/signup/steps/step1_profile.tsx b/web/app/signup/steps/step1_profile.tsx index d31ac639..06106073 100644 --- a/web/app/signup/steps/step1_profile.tsx +++ b/web/app/signup/steps/step1_profile.tsx @@ -44,7 +44,7 @@ export default function Step1({ onSave, prev, caller }: StepProps) { return ( <>
-

アカウント設定

+

アカウント設定(1/5)

diff --git a/web/app/signup/steps/step2_img.tsx b/web/app/signup/steps/step2_img.tsx index e392051e..e2c3de70 100644 --- a/web/app/signup/steps/step2_img.tsx +++ b/web/app/signup/steps/step2_img.tsx @@ -39,6 +39,7 @@ export default function Step2({ return ( <>
+

プロフィール画像設定(2/5)

) { ) : (
-

授業情報の登録 (スキップ可)

+

授業情報の登録(4/5,スキップ可)

diff --git a/web/app/signup/steps/step5_interests.tsx b/web/app/signup/steps/step5_interests.tsx index dd220a1d..909fb6ed 100644 --- a/web/app/signup/steps/step5_interests.tsx +++ b/web/app/signup/steps/step5_interests.tsx @@ -86,6 +86,7 @@ export default function Step5({ back }: BackProp) { <>
+

興味分野の登録(5/5、スキップ可)

{draftSubjects.map((subject, index) => ( From 0189e1a4cd9629bea1f098199fcc3ad715623549 Mon Sep 17 00:00:00 2001 From: RRRyoma <119156952+RRRyoma@users.noreply.github.com> Date: Fri, 21 Feb 2025 12:19:46 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E5=88=9D=E6=9C=9F=E7=99=BB=E9=8C=B2?= =?UTF-8?q?=E7=A2=BA=E8=AA=8D=E7=94=BB=E9=9D=A2=E3=81=AE=E3=83=87=E3=82=B6?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E6=94=B9=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/app/signup/steps/step3_confirmation.tsx | 54 +++++++++++++-------- 1 file changed, 34 insertions(+), 20 deletions(-) diff --git a/web/app/signup/steps/step3_confirmation.tsx b/web/app/signup/steps/step3_confirmation.tsx index 47f669ad..5b8325b9 100644 --- a/web/app/signup/steps/step3_confirmation.tsx +++ b/web/app/signup/steps/step3_confirmation.tsx @@ -1,6 +1,7 @@ import type { Step1User } from "common/zod/types"; import type { BackProp, StepProps } from "~/app/signup/common"; import CardBasicInfo from "~/components/CardBasicInfo"; +import UserAvatar from "~/components/human/avatar"; import type { Step2Data } from "./step2_img"; interface inputDataProps { @@ -18,27 +19,40 @@ export default function Confirmation({ throw new Error("don't skip the steps"); } return ( -
-

確認

-

以下の内容で登録する場合は「次へ」を押してください。

-

基本情報

-
-
- + <> +
+

確認(3/5)

+

以下の内容で登録する場合は「次へ」を押してください。

+
+
+

プロフィール画像

+
+ +
+
+
+

基本情報

+
+

名前:  {Step1Data.name}

+

学年:  {Step1Data.grade}

+

+ 学部学科:{Step1Data.faculty} + {Step1Data.department} +

+
+
+
+

自己紹介

+
+

{Step1Data.intro}

+
+
-

自己紹介

-

{Step1Data.intro}

-
+ ); } From ef2a6dcd39665304169b667ca3ec7ed940e8dadb Mon Sep 17 00:00:00 2001 From: RRRyoma <119156952+RRRyoma@users.noreply.github.com> Date: Fri, 21 Feb 2025 13:04:46 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=E3=82=AB=E3=83=BC=E3=83=89=E3=81=AEimport?= =?UTF-8?q?=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/app/signup/steps/step3_confirmation.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/app/signup/steps/step3_confirmation.tsx b/web/app/signup/steps/step3_confirmation.tsx index 5b8325b9..e7ac8fac 100644 --- a/web/app/signup/steps/step3_confirmation.tsx +++ b/web/app/signup/steps/step3_confirmation.tsx @@ -1,6 +1,5 @@ import type { Step1User } from "common/zod/types"; import type { BackProp, StepProps } from "~/app/signup/common"; -import CardBasicInfo from "~/components/CardBasicInfo"; import UserAvatar from "~/components/human/avatar"; import type { Step2Data } from "./step2_img";