-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
18183b8
commit 97be3dd
Showing
1 changed file
with
153 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,159 @@ | ||
import { | ||
Container, | ||
Heading, | ||
VStack, | ||
Box, | ||
Input, | ||
FormLabel, | ||
Button, | ||
} from '@chakra-ui/react'; | ||
import { Link } from 'react-router-dom'; | ||
import GoToTopButton from '../Button/GoToTopButton'; | ||
import React from 'react'; | ||
|
||
const Request = () => { | ||
const [name, setName] = React.useState(''); | ||
const [email, setEmail] = React.useState(''); | ||
const [course, setCourse] = React.useState(''); | ||
|
||
return( | ||
<Container h="92vh"> | ||
<VStack | ||
h='full' | ||
justifyContent='center' | ||
spacing={'16'} | ||
> | ||
<Heading children={'Request New Course'} /> | ||
<form action="" style={{ width: '100%' }}> | ||
<Box my={'4'}> | ||
<FormLabel htmlFor="name" children="Name" /> | ||
<Input | ||
required | ||
id="name" | ||
value={name} | ||
onChange={e => setName(e.target.value)} | ||
placeholder="Enter your Name" | ||
type="text" | ||
focusBorderColor="yellow.400" | ||
/> | ||
</Box> | ||
|
||
<Box my={'4'}> | ||
<FormLabel htmlFor="email" children="Email Address" /> | ||
<Input | ||
required | ||
id="email" | ||
value={email} | ||
onChange={e => setEmail(e.target.value)} | ||
placeholder="Abc" | ||
type="email" | ||
focusBorderColor="yellow.400" | ||
/> | ||
</Box> | ||
|
||
<Box my={'4'}> | ||
<FormLabel htmlFor="course" children="Course" /> | ||
<Input | ||
required | ||
id="course" | ||
value={course} | ||
onChange={e => setCourse(e.target.value)} | ||
placeholder="Explain the Course" | ||
focusBorderColor="yellow.400" | ||
Container, | ||
Heading, | ||
VStack, | ||
Box, | ||
Input, | ||
FormLabel, | ||
Button, | ||
Flex, | ||
Image, | ||
useColorModeValue, | ||
useBreakpointValue, | ||
} from '@chakra-ui/react'; | ||
import { Link } from 'react-router-dom'; | ||
import { useEffect, useState } from 'react'; | ||
import React from 'react'; | ||
import GoToTopButton from '../Button/GoToTopButton'; | ||
import requestImage from '../../assets/images/contact.jpg'; | ||
|
||
const Request = () => { | ||
const [name, setName] = React.useState(''); | ||
const [email, setEmail] = React.useState(''); | ||
const [course, setCourse] = React.useState(''); | ||
|
||
const [viewportHeight, setViewportHeight] = useState(0); | ||
|
||
useEffect(() => { | ||
const calculateViewportHeight = () => { | ||
const height = window.innerHeight; | ||
const offset = 134; // 20 pixels | ||
setViewportHeight(height - offset); | ||
}; | ||
calculateViewportHeight(); | ||
window.addEventListener('resize', calculateViewportHeight); | ||
return () => { | ||
window.removeEventListener('resize', calculateViewportHeight); | ||
}; | ||
}, []); | ||
|
||
const handleSubmit = e => { | ||
e.preventDefault(); | ||
// Add your form submission logic here | ||
}; | ||
|
||
const textColor = useColorModeValue('gray.700', 'white'); | ||
const displayImage = useBreakpointValue({ base: 'none', md: 'block' }); | ||
|
||
return ( | ||
<Container maxWidth="80%" paddingX={{ base: '6', md: '0' }}> | ||
<Flex flexDirection={{ base: 'column', md: 'row' }} justifyContent="space-between"> | ||
<VStack justifyContent="center" spacing={'5'} height="auto" width={{ base: '100%', md: '50%' }} marginBottom={{ base: '6', md: '0' }}> | ||
<form onSubmit={handleSubmit} style={{ width: '100%' }}> | ||
<Heading | ||
children={'Request New Course'} | ||
marginBottom="4px" | ||
fontFamily="'Uncut Sans', sans-serif" | ||
color={textColor} | ||
/> | ||
</Box> | ||
|
||
<Button my={'4'} colorScheme="yellow" type="submit"> | ||
Send | ||
</Button> | ||
|
||
<Box my={'4'}> | ||
See Available Courses!! | ||
<Link to="/courses"> | ||
|
||
<Box textAlign="left" color={textColor} marginBottom={{ base: '4', md: '0' }}> | ||
{' '} | ||
<Button colorScheme="yellow" variant={'link'}> | ||
Click | ||
</Button>{' '} | ||
You can reach us anytime via | ||
<Link to="/request" style={{ textDecoration: 'none', marginLeft: '5px' }}> | ||
<Button colorScheme="orange" variant={'link'}> | ||
hi@edumi | ||
</Button> | ||
</Link> | ||
here | ||
</Box> | ||
</form> | ||
</VStack> | ||
<GoToTopButton/> | ||
|
||
<Box marginBottom={{ base: '4', md: '0' }}> | ||
<FormLabel htmlFor="name" children="Name" /> | ||
<Input | ||
required | ||
id="name" | ||
value={name} | ||
onChange={e => setName(e.target.value)} | ||
placeholder="Enter your Name" | ||
focusBorderColor="yellow.400" | ||
width="100%" | ||
height="45px" | ||
/> | ||
</Box> | ||
|
||
<Box marginBottom={{ base: '4', md: '0' }}> | ||
<FormLabel htmlFor="email" children="Email Address" /> | ||
<Input | ||
required | ||
id="email" | ||
value={email} | ||
onChange={e => setEmail(e.target.value)} | ||
placeholder=" 📧 Enter your Email Address" | ||
type="email" | ||
focusBorderColor="yellow.400" | ||
width="100%" | ||
height="45px" | ||
/> | ||
</Box> | ||
|
||
<Box marginBottom={{ base: '4', md: '0' }}> | ||
<FormLabel htmlFor="Coursename" children="Course Name" /> | ||
<Input | ||
required | ||
id="Coursename" | ||
value={name} | ||
onChange={e => setName(e.target.value)} | ||
placeholder="Enter the course name" | ||
focusBorderColor="yellow.400" | ||
width="100%" | ||
height="45px" | ||
/> | ||
</Box> | ||
|
||
<Box> | ||
<FormLabel htmlFor="course" children="Brief description" /> | ||
<Input | ||
required | ||
id="course" | ||
value={course} | ||
onChange={e => setCourse(e.target.value)} | ||
placeholder="Tell us a little about the course...." | ||
focusBorderColor="yellow.400" | ||
width="100%" | ||
paddingTop="19px" | ||
paddingBottom="80px" | ||
paddingLeft="10px" | ||
textAlign="left" | ||
/> | ||
</Box> | ||
|
||
<Button | ||
my={3} | ||
colorScheme="#EB5017" | ||
background="#EB5017" | ||
width="100%" | ||
height="45px" | ||
borderRadius="sm" | ||
gap="10px" | ||
> | ||
Send Request | ||
</Button> | ||
</form> | ||
</VStack> | ||
|
||
<Box width={{ base: '100%', md: '50%' }} height="auto" marginBottom={{ base: '6', md: '0' }} display={displayImage}> | ||
<Image | ||
src={requestImage} | ||
alt="Request Image" | ||
width="100%" | ||
height="90%" | ||
style={{ filter: 'blur(2px)', opacity: '0.1' }} | ||
/> | ||
</Box> | ||
</Flex> | ||
<GoToTopButton /> | ||
</Container> | ||
) | ||
}; | ||
|
||
export default Request; | ||
|
||
); | ||
}; | ||
|
||
export default Request; |