diff --git a/packages/account/src/Assets/ic-brand-deriv-go-dark.svg b/packages/account/src/Assets/ic-brand-deriv-go-dark.svg new file mode 100644 index 000000000000..69414f8869ba --- /dev/null +++ b/packages/account/src/Assets/ic-brand-deriv-go-dark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/packages/account/src/Assets/ic-brand-deriv-go.svg b/packages/account/src/Assets/ic-brand-deriv-go-light.svg similarity index 100% rename from packages/account/src/Assets/ic-brand-deriv-go.svg rename to packages/account/src/Assets/ic-brand-deriv-go-light.svg diff --git a/packages/account/src/Sections/Security/Passwords/deriv-password.jsx b/packages/account/src/Sections/Security/Passwords/deriv-password.jsx index e7cf3a6e4357..ab8682aabe19 100644 --- a/packages/account/src/Sections/Security/Passwords/deriv-password.jsx +++ b/packages/account/src/Sections/Security/Passwords/deriv-password.jsx @@ -1,5 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; +import { Button, Modal, Text } from '@deriv/components'; import { localize } from '@deriv/translations'; import { connect } from 'Stores/connect'; import { WS } from 'Services/ws-methods'; @@ -8,31 +9,67 @@ import ChangePasswordForm from './change-password-form.jsx'; import SocialPasswordForm from './social-password-form.jsx'; import PasswordsStatic from './passwords-static.jsx'; -const DerivPassword = ({ email, is_social_signup }) => ( - - -
- - {is_social_signup ? ( - - ) : ( - { - WS.verifyEmail(email, 'reset_password'); - // multi_step_ref.current?.goNextStep(); - }} - /> - )} -
-
+const UnlinkConfirmationDialog = ({ is_open, onClose, onConfirm }) => ( + + + {localize('You will need to set a password to complete the process.')} + + +