Last active
July 12, 2021 11:15
-
-
Save mu29/41b8efd6402b8d4e313d3227be56cc64 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| import { | |
| Button, | |
| Caption, | |
| HStack, | |
| Link, | |
| TextField, | |
| VStack, | |
| } from '@class101/oui'; | |
| const EmailLoginForm = () => ( | |
| <form> | |
| <VStack spacing={16} mb={4}> | |
| <TextField | |
| name="email" | |
| type="email" | |
| label="이메일" | |
| placeholder="example@naver.com" | |
| /> | |
| <TextField | |
| name="password" | |
| type="password" | |
| label="비밀번호" | |
| placeholder="********" | |
| /> | |
| </VStack> | |
| <HStack spacing="between" mb={4} my={8}> | |
| <Link to="/reset-password"> | |
| <Caption level={2} color="gray.600"> | |
| 비밀번호를 잊으셨나요? | |
| </Caption> | |
| </Link> | |
| <Link to="/sign-up"> | |
| <Caption level={2} color="gray.600"> | |
| 회원 가입하기 | |
| </Caption> | |
| </Link> | |
| </HStack> | |
| <Button kind="primary" size="lg" full> | |
| 로그인 | |
| </Button> | |
| </form> | |
| ); | |
| export default EmailLoginForm; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment