-
Notifications
You must be signed in to change notification settings - Fork 0
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
5ee53ca
commit 64c8ca8
Showing
13 changed files
with
681 additions
and
83 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 |
---|---|---|
@@ -1,2 +1,25 @@ | ||
/** @jsxImportSource @emotion/react */ | ||
import { css } from "@emotion/react"; | ||
import theme from "../../../../styles/theme"; | ||
|
||
export const Resultblock = ({ children }) => ( | ||
<div | ||
css={css` | ||
width: 100%; | ||
margin: 0 auto; | ||
display: flex; | ||
text-align: center; | ||
align-items: center; /* 수직 가운데 정렬 */ | ||
justify-content: center; | ||
flex-direction: column; | ||
border-radius: 5px 5px 0px 0px; | ||
padding: 4rem; | ||
color: #76c56f; | ||
background: #fff; | ||
box-sizing: border-box; | ||
${theme.textVariants.body3_bold} | ||
`} | ||
> | ||
{children} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** @jsxImportSource @emotion/react */ | ||
import { css } from "@emotion/react"; | ||
import theme from "../../../../../styles/theme"; | ||
|
||
export const Resultblock = ({ children }) => ( | ||
<div | ||
css={css` | ||
width: 100%; | ||
margin: 0 auto; | ||
display: flex; | ||
text-align: center; | ||
align-items: center; /* 수직 가운데 정렬 */ | ||
justify-content: center; | ||
flex-direction: column; | ||
border-radius: 5px 5px 0px 0px; | ||
padding: 4rem; | ||
color: #76c56f; | ||
background: #fff; | ||
box-sizing: border-box; | ||
${theme.textVariants.body3_bold} | ||
`} | ||
> | ||
{children} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React from "react"; | ||
import { | ||
InnerContainer, | ||
Inners, | ||
SignTitle, | ||
InputContainer, | ||
SignButton, | ||
SignInput, | ||
Cblock, | ||
CheckContainer, | ||
} from "../../../../emotion/component"; | ||
import { Link } from "react-router-dom"; | ||
import { Resultblock } from "./component"; | ||
|
||
const Findresultid = () => { | ||
return ( | ||
<> | ||
<Inners> | ||
<CheckContainer> | ||
<Link to="/findid"> | ||
<Cblock width="10rem" background="#A1D99D" color="#F8F9E3"> | ||
아이디 찾기 | ||
</Cblock> | ||
</Link> | ||
<Link to="/findpass"> | ||
<Cblock width="10rem" background="#E1F0DF" color="#76C56F"> | ||
비밀번호 찾기 | ||
</Cblock> | ||
</Link> | ||
</CheckContainer> | ||
<InnerContainer width={"50rem"}> | ||
<SignTitle>아이디 찾기</SignTitle> | ||
입력하신 정보와 일치하는 아이디는 아래와 같습니다. | ||
<InputContainer> | ||
<Resultblock>000000</Resultblock> | ||
<Link to="/"> | ||
<SignButton>로그인 하러 가기</SignButton> | ||
</Link> | ||
</InputContainer> | ||
</InnerContainer> | ||
</Inners> | ||
</> | ||
); | ||
}; | ||
|
||
export default Findresultid; |
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
25 changes: 25 additions & 0 deletions
25
src/component/project/find/findpassword/result/component.js
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,25 @@ | ||
/** @jsxImportSource @emotion/react */ | ||
import { css } from "@emotion/react"; | ||
import theme from "../../../../../styles/theme"; | ||
|
||
export const Resultblock = ({ children }) => ( | ||
<div | ||
css={css` | ||
width: 100%; | ||
margin: 0 auto; | ||
display: flex; | ||
text-align: center; | ||
align-items: center; /* 수직 가운데 정렬 */ | ||
justify-content: center; | ||
flex-direction: column; | ||
border-radius: 5px 5px 0px 0px; | ||
padding: 4rem; | ||
color: #76c56f; | ||
background: #fff; | ||
box-sizing: border-box; | ||
${theme.textVariants.body3_bold} | ||
`} | ||
> | ||
{children} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React from "react"; | ||
import { | ||
InnerContainer, | ||
Inners, | ||
SignTitle, | ||
InputContainer, | ||
SignButton, | ||
SignInput, | ||
Cblock, | ||
CheckContainer, | ||
} from "../../../../emotion/component"; | ||
import { Link } from "react-router-dom"; | ||
import { Resultblock } from "./component"; | ||
|
||
const Findresultpass = () => { | ||
return ( | ||
<> | ||
<Inners> | ||
<CheckContainer> | ||
<Link to="/findid"> | ||
<Cblock width="10rem" background="#E1F0DF" color="#76C56F"> | ||
아이디 찾기 | ||
</Cblock> | ||
</Link> | ||
<Link to="/findpass"> | ||
<Cblock width="10rem" background="#A1D99D" color="#F8F9E3"> | ||
비밀번호 찾기 | ||
</Cblock> | ||
</Link> | ||
</CheckContainer> | ||
<InnerContainer width={"50rem"}> | ||
<SignTitle>비밀번호 찾기</SignTitle> | ||
입력하신 정보와 일치하는 비밀번호는 아래와 같습니다. | ||
<InputContainer> | ||
<Resultblock>000***</Resultblock> | ||
<Link to="/"> | ||
<SignButton>로그인 하러 가기</SignButton> | ||
</Link> | ||
</InputContainer> | ||
</InnerContainer> | ||
</Inners> | ||
</> | ||
); | ||
}; | ||
|
||
export default Findresultpass; |
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
Oops, something went wrong.