Skip to content

Commit

Permalink
feat(register): update new wallet registration copy
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed Dec 30, 2020
1 parent cdfa830 commit 0eac55a
Showing 1 changed file with 36 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { FormattedHTMLMessage, FormattedMessage } from 'react-intl'
import { Link, Text } from 'blockchain-info-components'
import CoinDisplay from 'components/Display/CoinDisplay'
import React from 'react'
import styled from 'styled-components'

import { Link, Text, TextGroup } from 'blockchain-info-components'
import CoinDisplay from 'components/Display/CoinDisplay'

const TermsContainer = styled.div`
& > * {
display: inline-block;
Expand Down Expand Up @@ -125,12 +126,39 @@ const Terms = props => {
/>
</Text>
) : (
<Text color='grey800' size='12px' weight={500}>
<FormattedMessage
id='scenes.register.registerform.blockchain.read_1'
defaultMessage='By creating an account, you agree to Blockchain’s'
/>
</Text>
<>
<TextGroup inline>
<Text color='grey800' size='12px' weight={500}>
<FormattedMessage
id='scenes.register.registerform.blockchain.terms1'
defaultMessage='By creating an account, you acknowledge that Blockchain.com cannot recover your password. If you lose access to your wallet and need to recover your funds, you must use your'
/>
</Text>{' '}
<Link
href='https://support.blockchain.com/hc/en-us/articles/360029029911-Your-Wallet-101'
target='_blank'
size='12px'
weight={500}
>
<FormattedMessage
id='scenes.register.registerform.blockchain.terms2'
defaultMessage='Backup Phrase'
/>
</Link>
<span style={{ marginLeft: '-2px' }}>.</span>
</TextGroup>
<Text
color='grey800'
size='12px'
weight={500}
style={{ marginTop: '10px' }}
>
<FormattedMessage
id='scenes.register.registerform.blockchain.terms3'
defaultMessage='You are also agreeing to Blockchain’s'
/>
</Text>
</>
)}
<span>&nbsp;</span>
<Link
Expand Down

0 comments on commit 0eac55a

Please sign in to comment.