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
fb86b60
commit 02a5b1c
Showing
5 changed files
with
168 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
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 /> | ||
아이디와 비밀번호를 | ||
<br /> | ||
정확하게 입력해주세요! | ||
</h1> | ||
<input id="inputId" type="text" placeholder="아이디 입력" /> | ||
<br /> | ||
<input id="inputPwd" type="text" placeholder="비밀번호 확인 입력" /> | ||
</div> | ||
</header> | ||
); | ||
} | ||
|
||
function Button() { | ||
const navigate = useNavigate(); | ||
|
||
return ( | ||
<div> | ||
<input | ||
id="prevBtn" | ||
type="button" | ||
onClick={() => navigate(-1)} | ||
/> | ||
<input id="nextBtn" type="button" /> | ||
<input id="helpBtn" type="button" /> | ||
</div> | ||
); | ||
} | ||
|
||
function SignUp2() { | ||
return ( | ||
<div> | ||
<Header /> | ||
<Button /> | ||
</div> | ||
); | ||
} | ||
|
||
export default SignUp2; |
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,39 @@ | ||
import React from "react"; | ||
import { useNavigate } from "react-router-dom"; | ||
//import "./SignUp1.css"; | ||
|
||
function Header() { | ||
return ( | ||
<header> | ||
<div className="line"></div> | ||
<img src={require("./image/check.png")} className="check" alt="check" /> | ||
<div className="textArea"> | ||
<h1>flower님, 반가워요!</h1> | ||
<h2>해바라기를 시작해볼까요?</h2> | ||
</div> | ||
</header> | ||
); | ||
} | ||
|
||
function Button() { | ||
const navigate = useNavigate(); | ||
|
||
return ( | ||
<div> | ||
<input id="prevBtn" type="button" onClick={() => navigate(-1)} /> | ||
<input id="startBtn" type="button" onClick={() => navigate("/app")} /> | ||
<input id="helpBtn" type="button" /> | ||
</div> | ||
); | ||
} | ||
|
||
function SignUp3() { | ||
return ( | ||
<div> | ||
<Header /> | ||
<Button /> | ||
</div> | ||
); | ||
} | ||
|
||
export default SignUp3; |