Skip to content

Commit

Permalink
Merge pull request #924 from idurar/dev
Browse files Browse the repository at this point in the history
update survey question
  • Loading branch information
salahlalami authored Jan 22, 2024
2 parents 6b205a0 + e0a0cf9 commit 847c1a2
Showing 1 changed file with 41 additions and 7 deletions.
48 changes: 41 additions & 7 deletions frontend/src/pages/Verify.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function Survey({ current }) {
<Form form={form} layout="vertical" onFinish={onFinish}>
<Form.Item
name="are_you"
label="Are you"
label="Are you ?"
rules={[
{
required: true,
Expand All @@ -62,9 +62,32 @@ function Survey({ current }) {
]}
/>
</Form.Item>
<Form.Item
name="version"
label="How you want to use IDURAR ERP CRM ?"
rules={[
{
required: true,
},
]}
>
<Select
style={{
width: '100%',
}}
options={[
{ value: 'online - one click deployement', label: 'Online (one click deployement)' },
{
value: 'Self-hosted',
label: 'Self-hosted (Require Tech Skills & Server & Database)',
},
{ value: 'Both : online and self-hosted', label: 'Both : online and self-hosted' },
]}
/>
</Form.Item>
<Form.Item
name="industry"
label="In witch Industry you want use IDURAR ERP CRM"
label="In witch Industry you want use IDURAR ERP CRM ?"
rules={[
{
required: true,
Expand Down Expand Up @@ -98,6 +121,10 @@ function Survey({ current }) {
{ value: 'Education & School', label: 'Education & School' },
{ value: 'Finance', label: 'Finance' },
{ value: 'Food & Beverages', label: 'Food & Beverages' },
{
value: 'Jewelry & watches',
label: 'Jewelry & watches',
},
{ value: 'Healthcare', label: 'Healthcare , Hospital & Clinic' },
{ value: 'Hotel', label: 'Hotel' },
{ value: 'Logistics', label: 'Logistics' },
Expand All @@ -112,10 +139,6 @@ function Survey({ current }) {
{ value: 'Real Estate', label: 'Real Estate' },
{ value: 'Retail', label: 'Retail' },
{ value: 'Restaurant & Cafe', label: 'Restaurant & Cafe' },
{
value: 'Software , IT & Web , Design Agency',
label: 'Software , IT & Web , Design Agency',
},
{ value: 'Sport', label: 'Sport' },
{ value: 'Travel & Tourism', label: 'Travel & Tourism' },
{ value: 'Trading & Import Export', label: 'Trading & Import Export' },
Expand All @@ -127,7 +150,18 @@ function Survey({ current }) {
</Form.Item>
<Form.Item
name="problem"
label="What's problem you are trying to solve by using ERP CRM"
label="What's problem you are trying to solve by using ERP CRM ?"
rules={[
{
required: true,
},
]}
>
<TextArea />
</Form.Item>
<Form.Item
name="features"
label="What's features you are looking for ?"
rules={[
{
required: true,
Expand Down

0 comments on commit 847c1a2

Please sign in to comment.