This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
daff9ae
commit abaa56b
Showing
8 changed files
with
70 additions
and
16 deletions.
There are no files selected for viewing
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,54 @@ | ||
import React from "react"; | ||
import { useNavigate } from "react-router-dom"; | ||
import "./SignUp1.css"; | ||
|
||
function Header() { | ||
return ( | ||
<header> | ||
<div className="line"></div> | ||
<div id="idBox"> | ||
<h1> | ||
회원가입을 위해 | ||
<br /> | ||
비밀번호를 작성해주세요 | ||
</h1> | ||
<div>정확한 확인을 위해 인증도 진행해 주세요</div> | ||
<input id="inputPassword" type="text" placeholder="비밀번호 입력" /> | ||
<br /> | ||
<input | ||
id="inputRePassword" | ||
type="text" | ||
placeholder="비밀번호 확인 입력" | ||
/> | ||
</div> | ||
</header> | ||
); | ||
} | ||
|
||
function Button() { | ||
const navigate = useNavigate(); | ||
|
||
return ( | ||
<div> | ||
<input | ||
id="prevBtn" | ||
type="button" | ||
value="⬅️" | ||
onClick={() => navigate(-1)} | ||
/> | ||
<input id="nextBtn" type="button" value="➡️" /> | ||
<input id="helpBtn" type="button" value="❓" /> | ||
</div> | ||
); | ||
} | ||
|
||
function SignUp2() { | ||
return ( | ||
<div> | ||
<Header /> | ||
<Button /> | ||
</div> | ||
); | ||
} | ||
|
||
export default SignUp2; |
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.