Skip to content

Commit b72d027

Browse files
committed
初期登録にステップ進行状態を追加
1 parent d6a2263 commit b72d027

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

web/app/signup/steps/step1_profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function Step1({ onSave, prev, caller }: StepProps<Step1User>) {
4444
return (
4545
<>
4646
<div className="flex h-full flex-col gap-4 p-4">
47-
<h1 className="text-xl">アカウント設定</h1>
47+
<h1 className="text-xl">アカウント設定(1/5)</h1>
4848
<div className="flex flex-col gap-2">
4949
<form onSubmit={handleSubmit(onSubmit)}>
5050
<Field fieldName="name" fieldLabel="名前" error={errors?.name}>

web/app/signup/steps/step2_img.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export default function Step2({
3939
return (
4040
<>
4141
<div className="g-2 flex flex-col p-2">
42+
<h1 className="text-xl">プロフィール画像設定(2/5)</h1>
4243
<div style={{ textAlign: "center", marginTop: "15vh" }}>
4344
<PhotoModal
4445
open={open}

web/app/signup/steps/step4_course.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Step4({ onSave }: StepProps<void>) {
1313
<FullScreenCircularProgress />
1414
) : (
1515
<div className="mx-4 mt-4 flex flex-1 flex-col gap-4">
16-
<h1>授業情報の登録 (スキップ可)</h1>
16+
<h1>授業情報の登録(4/5,スキップ可)</h1>
1717
<div className="flex-1">
1818
<EditableCoursesTable userId={state.data} />
1919
</div>

web/app/signup/steps/step5_interests.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export default function Step5({ back }: BackProp) {
8686
<>
8787
<div className="h-full overflow-y-scroll">
8888
<div className="mx-auto flex h-full max-w-lg flex-col px-4">
89+
<h1 className="text-xl">興味分野の登録(5/5、スキップ可)</h1>
8990
<div className="flex-1">
9091
<div className="flex flex-wrap gap-2 p-2">
9192
{draftSubjects.map((subject, index) => (

0 commit comments

Comments
 (0)