-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from FinalDoubleTen/FE-20--feat/User/signup
Fe 20 feat/user/signup
- Loading branch information
Showing
7 changed files
with
174 additions
and
1 deletion.
There are no files selected for viewing
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.
This file contains 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
This file contains 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
This file contains 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
This file contains 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,55 @@ | ||
import { Back, Button } from '@components/common'; | ||
import { | ||
CameraIcon, | ||
CircleIcon, | ||
ProgressBarIcon, | ||
} from '@components/common/icons/Icons'; | ||
import { | ||
UserEmailInputBox, | ||
UserInputBox, | ||
UserPwInputBox, | ||
} from '@components/user'; | ||
import { useState } from 'react'; | ||
import profileImg from '@assets/images/profileImg.svg'; | ||
|
||
const SignupInfo = () => { | ||
const [isActive, setIsActive] = useState<boolean>(false); | ||
|
||
return ( | ||
<div className="relative"> | ||
<Back /> | ||
<div className="mt-2 flex justify-end"> | ||
<ProgressBarIcon progress={2} /> | ||
</div> | ||
<h1 className="title1 mb-9 mt-8"> | ||
프로필 사진과 닉네임을 | ||
<br /> | ||
설정해주세요. | ||
</h1> | ||
<div className="mb-10 flex justify-center"> | ||
<label htmlFor="profileImg" className="relative"> | ||
<img src={profileImg} alt="유저 프로필" /> | ||
<div className="absolute bottom-0 right-0"> | ||
<CircleIcon /> | ||
</div> | ||
</label> | ||
<input type="file" id="profileImg" className="m-[-1px] h-px w-px" /> | ||
</div> | ||
<form> | ||
<UserInputBox | ||
type="text" | ||
label="닉네임" | ||
placeholder="닉네임을 입력하세요" | ||
/> | ||
<div>성별</div> | ||
<div>여</div> | ||
<div>나이</div> | ||
<div>10대</div> | ||
|
||
<Button isActive={false}>다음</Button> | ||
</form> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SignupInfo; |
This file contains 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