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,20 @@
import React from 'react';
import PropTypes from 'prop-types';
import styles from './AddEmailAddressDialog.css';
const VerifyEmailAddress = ({ emailAddress }) => (
<div>
<h4 className={styles.title}>Verify Your Email Address</h4>
<p className={styles.description}>
Weve sent an email to {emailAddress} to verify your account. You must
verify your email address so that it can be used for account change
confirmations and notifications.
</p>
</div>
);
VerifyEmailAddress.propTypes = {
emailAddress: PropTypes.string,
};
export default VerifyEmailAddress;