Checking if email verification is required

This commit is contained in:
okbel
2018-05-02 18:35:15 -03:00
parent b04fc1faf8
commit 3b2deeb007
5 changed files with 160 additions and 71 deletions
@@ -0,0 +1,18 @@
import React from 'react';
import styles from './AddEmailAddressDialog.css';
const EmailAddressAdded = () => (
<div>
<h4 className={styles.title}>Email Address Added</h4>
<p className={styles.description}>
Your email address has been added to your account.
</p>
<strong>Need to change your email address?</strong>
<p className={styles.description}>
You can change your account settings by visiting{' '}
<strong>My Profile {'>'} Settings</strong>.
</p>
</div>
);
export default EmailAddressAdded;