-
Notifications
You must be signed in to change notification settings - Fork 1
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 #10 from TeamPu/feat/join-page
[FEAT] : Realization of Join Page
- Loading branch information
Showing
11 changed files
with
103 additions
and
14 deletions.
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.
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,46 @@ | ||
import FormInput from "./FormInput"; | ||
// import { Link } from "react-router-dom"; | ||
|
||
export default function JoinForm() { | ||
return ( | ||
<div className="flex flex-col gap-y-2.5"> | ||
<FormInput | ||
key="name" | ||
noLabel={true} | ||
type="text" | ||
id="name" | ||
name="name" | ||
placeholder="이름" | ||
/> | ||
<FormInput | ||
key="studentId" | ||
noLabel={true} | ||
type="text" | ||
id="studentId" | ||
name="studentId" | ||
placeholder="학번" | ||
/> | ||
<FormInput | ||
key="phone" | ||
noLabel={true} | ||
type="tel" | ||
id="phone" | ||
name="phone" | ||
placeholder="전화번호" | ||
/> | ||
<FormInput | ||
key="email" | ||
noLabel={true} | ||
type="email" | ||
id="email" | ||
name="email" | ||
placeholder="이메일" | ||
/> | ||
<div className="flex w-full justify-center"> | ||
<button className="grid w-[40%] place-items-center rounded-[8px] bg-primary-dark py-2 text-white transition duration-200 ease-in-out hover:bg-white hover:text-primary"> | ||
가입하기 | ||
</button> | ||
</div> | ||
</div> | ||
); | ||
} |
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
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,35 @@ | ||
import GreetingImg from "../assets/greeting.png"; | ||
import { Link } from "react-router-dom"; | ||
import { JoinForm } from "../components"; | ||
|
||
export default function JoinPage() { | ||
return ( | ||
<div className="flex h-screen w-screen"> | ||
<div className="hidden flex-1 place-items-center md:grid"> | ||
<Link to="/" className="flex flex-col items-center gap-y-2.5"> | ||
<div className="grid h-fit w-full place-items-center"> | ||
<img src={GreetingImg} alt="Greeting" className="w-48" /> | ||
</div> | ||
<div className="epilogue h-fit w-full text-center text-6xl font-extrabold"> | ||
<span>Welcome to </span> | ||
<br /> | ||
<span className="text-primary">Team</span>Pu! | ||
</div> | ||
</Link> | ||
</div> | ||
<div className="grid flex-1 place-items-center bg-primary"> | ||
<div className="w-[80%] md:w-[50%]"> | ||
<div className="mb-2.5 h-fit w-full text-center text-white"> | ||
<p className="epilogue w-full text-6xl font-extrabold">Join</p> | ||
<p className="text-center text-base"> | ||
팀프로젝트실 예약에 필요한 정보입니다. | ||
<br /> | ||
정확하게 입력해 주세요. | ||
</p> | ||
</div> | ||
<JoinForm /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
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