Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

mitchell/Read more signup #6587

Merged
merged 11 commits into from
Jun 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/sass/_common/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,10 @@ ul.bullet.gr-row > li {
display: list-item;
}

#tax_information_, #pep_declaration_note_toggle, #professional_info_toggle {
font-weight: bold;
}

.toggle-arrow {
&:after {
content: '';
Expand Down
2 changes: 1 addition & 1 deletion src/templates/_common/components/forms_common_rows.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export const TaxInformationForm = () => (
<React.Fragment>
<div id='tax_information_info' className='gr-12 gr-padding-10'>
<label>{it.L('Deriv Investments (Europe) Limited is required to collect your tax information.')}&nbsp;
<a id='tax_information_note_toggle' className='toggle-arrow' href='javascript:;'>{it.L('Read more.')}</a>
<span id='tax_information_note_toggle' className='toggle-arrow'>{it.L('Read more.')}</span>
</label>
<span className='required_field_asterisk'>*</span>

Expand Down
2 changes: 1 addition & 1 deletion src/templates/app/_includes/pep_declaration.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const PepDeclaration = () => (
<Fieldset legend={it.L('PEP Declaration')}>
<div className='gr-12'>
<label>{it.L('A PEP is an individual who is or has been entrusted with a prominent public function. This status extends to a PEP\'s relatives and close associates.')}&nbsp;
<a id='pep_declaration_note_toggle' className='toggle-arrow' href='javascript:;'>{it.L('Learn more')}</a>
<span id='pep_declaration_note_toggle' className='toggle-arrow'>{it.L('Learn more')}</span>
</label>
<div id='pep_declaration_note' style={{ display: 'none' }}>
<p>{it.L('A politically exposed person (PEP) is an individual who is or has been entrusted with a prominent public function. Family members and close associates of such individuals are also considered as PEPs. A PEP who has ceased to be entrusted with a prominent public function for at least 12 months no longer qualifies as a PEP.')}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/templates/app/_includes/professional_client.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ProfessionalClient = () => (
<p>{it.L('By default, all [_1] clients are retail clients but anyone can request to be treated as a professional client.', it.website_name)}</p>
<input id='chk_professional' type='checkbox' />
<label htmlFor='chk_professional'>{it.L('I would like to be treated as a professional client.')}&nbsp;</label>
<a id='professional_info_toggle' className='toggle-arrow' href='javascript:;'>{it.L('Learn more.')}</a>
<span id='professional_info_toggle' className='toggle-arrow' href='javascript:;'>{it.L('Learn more.')}</span>
<div id='professional_info' style={{ display: 'none' }}>
<div id='non_uk' className='invisible'>
<p>{it.L('Clients need to satisfy at least two of the following criteria in order to receive Professional Client status:')}</p>
Expand Down