Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

135 lines
3.5 KiB
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import Checkbox from '@mui/material/Checkbox';
import FormControlLabel from '@mui/material/FormControlLabel';
import FormLabel from '@mui/material/FormLabel';
import Grid from '@mui/material/Grid';
import OutlinedInput from '@mui/material/OutlinedInput';
import { styled } from '@mui/material/styles';
const FormGrid = styled(Grid)(() => ({
display: 'flex',
flexDirection: 'column',
}));
export default function AddressForm() {
return (
<Grid container spacing={3}>
<FormGrid size={{ xs: 12, md: 6 }}>
<FormLabel htmlFor="first-name" required>
First name
</FormLabel>
<OutlinedInput
id="first-name"
name="first-name"
type="name"
placeholder="John"
autoComplete="first name"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 12, md: 6 }}>
<FormLabel htmlFor="last-name" required>
Last name
</FormLabel>
<OutlinedInput
id="last-name"
name="last-name"
type="last-name"
placeholder="Snow"
autoComplete="last name"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 12 }}>
<FormLabel htmlFor="address1" required>
Address line 1
</FormLabel>
<OutlinedInput
id="address1"
name="address1"
type="address1"
placeholder="Street name and number"
autoComplete="shipping address-line1"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 12 }}>
<FormLabel htmlFor="address2">Address line 2</FormLabel>
<OutlinedInput
id="address2"
name="address2"
type="address2"
placeholder="Apartment, suite, unit, etc. (optional)"
autoComplete="shipping address-line2"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 6 }}>
<FormLabel htmlFor="city" required>
City
</FormLabel>
<OutlinedInput
id="city"
name="city"
type="city"
placeholder="New York"
autoComplete="City"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 6 }}>
<FormLabel htmlFor="state" required>
State
</FormLabel>
<OutlinedInput
id="state"
name="state"
type="state"
placeholder="NY"
autoComplete="State"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 6 }}>
<FormLabel htmlFor="zip" required>
Zip / Postal code
</FormLabel>
<OutlinedInput
id="zip"
name="zip"
type="zip"
placeholder="12345"
autoComplete="shipping postal-code"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 6 }}>
<FormLabel htmlFor="country" required>
Country
</FormLabel>
<OutlinedInput
id="country"
name="country"
type="country"
placeholder="United States"
autoComplete="shipping country"
required
size="small"
/>
</FormGrid>
<FormGrid size={{ xs: 12 }}>
<FormControlLabel
control={<Checkbox name="saveAddress" value="yes" />}
label="Use this address for payment details"
/>
</FormGrid>
</Grid>
);
}