-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path5.2.js
More file actions
30 lines (28 loc) · 898 Bytes
/
5.2.js
File metadata and controls
30 lines (28 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React from 'react';
import Box from '../../../../components/primitives/Box';
import Flex from '../../../../components/primitives/Flex';
import Heading from '../../../../components/primitives/Heading';
import Button from '../../components/primitives/Button';
import Link from '../../../../components/primitives/Link';
import Text from '../../../../components/primitives/Text';
import Input from '../../../../components/primitives/Input';
const LoginPage = () => {
return (
<form>
<Heading mb={4}>Login</Heading>
<Text as="label" display="block" mb={3}>
<Box mb={2}>Username</Box>
<Input type="text" />
</Text>
<Text as="label" display="block" mb={4}>
<Box mb={2}>Password</Box>
<Input type="password" />
</Text>
<Box mb={4}>
<Link href="#">Forgot your password?</Link>
</Box>
<Button>Log in</Button>
</form>
);
};
export default LoginPage;