Skip to content

Commit

Permalink
Merge pull request #4 from oskar-binary/personal_details
Browse files Browse the repository at this point in the history
Personal details
  • Loading branch information
klyanyi authored Sep 6, 2019
2 parents c10d9a2 + 79f88b7 commit 93ac959
Show file tree
Hide file tree
Showing 13 changed files with 718 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ class ToggleAccountManagement extends React.PureComponent {
header={this.state.header}
menu_type='accordion'
modal_content={modal_content}
modal_content_footer={modal_content_footer}
onChangeHeader={this.onChangeHeader}
is_open={is_open}
title={localize('Settings')}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from 'react';

export const FormFooter = ({ children }) => (
<div className='account-management-form-footer'>{children}</div>
);
Original file line number Diff line number Diff line change
@@ -0,0 +1,313 @@
export const experience_list = [
{
text : '0-1 year',
value : '0-1 year',
},
{
text : '1-2 years',
value : '1-2 years',
},
{
text : 'Over 3 years',
value : 'Over 3 years',
},
];

export const income_source_list = [
{
text: 'Salaried Employee',
value: 'Salaried Employee'
},
{
text: 'Self-Employed',
value: 'Self-Employed'
},
{
text: 'Investments & Dividends',
value: 'Investments & Dividends'
},
{
text: 'Pension',
value: 'Pension'
},
{
text: 'State Benefits',
value: 'State Benefits'
},
{
text: 'Savings & Inheritance',
value: 'Savings & Inheritance'
}
];

export const employment_status_list = [
{
text: 'Please select',
value: ''
},
{
text: 'Employed',
value: 'Employed'
},
{
text: 'Pensioner',
value: 'Pensioner'
},
{
text: 'Self-Employed',
value: 'Self-Employed'
},
{
text: 'Student',
value: 'Student'
},
{
text: 'Unemployed',
value: 'Unemployed'
}
];

export const employment_industry_list = [
{
text: 'Please select',
value: ''
},
{
text: 'Construction',
value: 'Construction'
},
{
text: 'Education',
value: 'Education'
},
{
text: 'Finance',
value: 'Finance'
},
{
text: 'Health',
value: 'Health'
},
{
text: 'Tourism',
value: 'Tourism'
},
{
text: 'Information & Communications Technology',
value: 'Information & Communications Technology'
},
{
text: 'Science & Engineering',
value: 'Science & Engineering'
},
{
text: 'Legal',
value: 'Legal'
},
{
text: 'Social & Cultural',
value: 'Social & Cultural'
},
{
text: 'Agriculture',
value: 'Agriculture'
},
{
text: 'Real Estate',
value: 'Real Estate'
},
{
text: 'Food Services',
value: 'Food Services'
},
{
text: 'Manufacturing',
value: 'Manufacturing'
},
{
text: 'Unemployed',
value: 'Unemployed'
}
];

export const occupation_list = [
{
text: 'Please select',
value: ''
},
{
text: 'Chief Executives, Senior Officials and Legislators',
value: 'Chief Executives, Senior Officials and Legislators'
},
{
text: 'Managers',
value: 'Managers'
},
{
text: 'Professionals',
value: 'Professionals'
},
{
text: 'Clerks',
value: 'Clerks'
},
{
text: 'Personal Care, Sales and Service Workers',
value: 'Personal Care, Sales and Service Workers'
},
{
text: 'Agricultural, Forestry and Fishery Workers',
value: 'Agricultural, Forestry and Fishery Workers'
},
{
text: 'Craft, Metal, Electrical and Electronics Workers',
value: 'Craft, Metal, Electrical and Electronics Workers'
},
{
text: 'Plant and Machine Operators and Assemblers',
value: 'Plant and Machine Operators and Assemblers'
},
{
text: 'Cleaners and Helpers',
value: 'Cleaners and Helpers'
},
{
text: 'Mining, Construction, Manufacturing and Transport Workers',
value: 'Mining, Construction, Manufacturing and Transport Workers'
},
{
text: 'Armed Forces',
value: 'Armed Forces'
},
{
text: 'Government Officers',
value: 'Government Officers'
},
{
text: 'Students',
value: 'Students'
},
{
text: 'Unemployed',
value: 'Unemployed'
}
];

export const source_of_wealth_list = [
{
text: 'Accumulation of Income/Savings',
value: 'Accumulation of Income/Savings'
},
{
text: 'Cash Business',
value: 'Cash Business'
},
{
text: 'Company Ownership',
value: 'Company Ownership'
},
{
text: 'Divorce Settlement',
value: 'Divorce Settlement'
},
{
text: 'Inheritance',
value: 'Inheritance'
},
{
text: 'Investment Income',
value: 'Investment Income'
},
{
text: 'Sale of Property',
value: 'Sale of Property'
}
];

export const education_level_list = [
{
text: 'Please select',
value: ''
},
{
text: 'Primary',
value: 'Primary'
},
{
text: 'Secondary',
value: 'Secondary'
},
{
text: 'Tertiary',
value: 'Tertiary'
}
];

export const net_income_list = [
{
text: 'Less than $25,000',
value: 'Less than $25,000'
},
{
text: '$25,000 - $50,000',
value: '$25,000 - $50,000'
},
{
text: '$50,001 - $100,000',
value: '$50,001 - $100,000'
},
{
text: '$100,001 - $500,000',
value: '$100,001 - $500,000'
},
{
text: 'Over $500,000',
value: 'Over $500,000'
}
];

export const estimated_worth_list = [
{
text: 'Less than $100,000',
value: 'Less than $100,000'
},
{
text: '$100,000 - $250,000',
value: '$100,000 - $250,000'
},
{
text: '$250,001 - $500,000',
value: '$250,001 - $500,000'
},
{
text: '$500,001 - $1,000,000',
value: '$500,001 - $1,000,000'
},
{
text: 'Over $1,000,000',
value: 'Over $1,000,000'
}
];

export const account_turnover_list = [
{
text: 'Less than $25,000',
value: 'Less than $25,000'
},
{
text: '$25,000 - $50,000',
value: '$25,000 - $50,000'
},
{
text: '$50,001 - $100,000',
value: '$50,001 - $100,000'
},
{
text: '$100,001 - $500,000',
value: '$100,001 - $500,000'
},
{
text: 'Over $500,000',
value: 'Over $500,000'
}
];
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
export const trading_experience_list = [
{
text: '0-1 year',
value: '0-1 year'
},
{
text: '1-2 years',
value: '1-2 years'
},
{
text: 'Over 3 years',
value: 'Over 3 years'
}
];

export const trading_frequency_list = [
{
text: '0-5 transactions in the past 12 months',
value: '0-5 transactions in the past 12 months'
},
{
text: '6-10 transactions in the past 12 months',
value: '6-10 transactions in the past 12 months'
},
{
text: '11-39 transactions in the past 12 months',
value: '11-39 transactions in the past 12 months'
},
{
text: '40 transactions or more in the past 12 months',
value: '40 transactions or more in the past 12 months'
}
];
Loading

0 comments on commit 93ac959

Please sign in to comment.