Skip to content

Instantly share code, notes, and snippets.

@mu29
Last active July 12, 2021 11:15
Show Gist options
  • Select an option

  • Save mu29/41b8efd6402b8d4e313d3227be56cc64 to your computer and use it in GitHub Desktop.

Select an option

Save mu29/41b8efd6402b8d4e313d3227be56cc64 to your computer and use it in GitHub Desktop.
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